PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Mobile navigation does not open

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

hi

I know that there have already been a few posts about this here, but I still haven't found a solution. the mobile filter no longer opens at https://lionfire.ch/shop/ (since the update on woof to husky.

do you have a solution?

Hello

since the update on woof to husky. - No! The problem is in your theme. Your theme hides the sidebar on mobile devices - https://share.pluginus.net/video/v20240424120803.mp4  - You should disable this functionality

Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png

thanks, that works in principle now.
1. is there a way to display the trigger on tablets?

this should work regardless of the width of the device screen. the main thing is that this device is mobile

 

then i ask another question: is it possible to get a filter button on a tablet/ipad as well?

Hello

Please  read  this  - https://stackoverflow.com/questions/77563654/how-to-add-ipad-in-wp-is-mobile

Add  in functions.php

function include_ipad_in_mobile_view( $is_mobile ) {
    if (strpos($_SERVER['HTTP_USER_AGENT'], 'iPad') !== false) {
        $is_mobile = true;
    }
    return $is_mobile;
}
add_filter( 'wp_is_mobile', 'include_ipad_in_mobile_view' );