Question about Mobile filter and Stylizing Filer Menu
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 pleaseIf 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.
Quote from joicejose on July 27, 2024, 11:53Hi,
I have set the filter as "yes" to set filter automatically, so that the filters will appear on all woocomerce pages. Currently it's laid out horizontally by default, which I like it.
- Is there a way to show the filter closed only on mobile , and opens up when user clicks on it ? ( I searched but couldn't find an exact answer. I saw the screenshot of a mobile mode and couldn't locate it on the setting. I use the latest updated version)
- Is there a way to control the menu size and width and stylize it further ? Couldn't find this option in the design tab . I'm looking to stylize it close to the filter in this link https://www.gkboptical.com/eyewear/eyeglasses.html
My site link is here https://opticone.ae/product-category/frames/
Hi,
I have set the filter as"yes" to set filter automatically, so that the filters will appear on all woocomerce pages. Currently it's laid out horizontally by default, which I like it.
- Is there a way to show the filter closed only on mobile , and opens up when user clicks on it ? ( I searched but couldn't find an exact answer. I saw the screenshot of a mobile mode and couldn't locate it on the setting. I use the latest updated version)
- Is there a way to control the menu size and width and stylize it further ? Couldn't find this option in the design tab . I'm looking to stylize it close to the filter in this link https://www.gkboptical.com/eyewear/eyeglasses.html
My site link is here https://opticone.ae/product-category/frames/
Quote from Pablo Borysenco on July 29, 2024, 09:57Hello
Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png
1 Try to add this code in functions.php
add_filters('woof_filter_shortcode_args', function($args){
$args['autohide'] = 0;
if (wp_is_mobile()) {
$args['autohide'] = 1;
}
return $args;
});
2 In this case you need CSS customization
Hello
Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png
1 Try to add this code in functions.php
add_filters('woof_filter_shortcode_args', function($args){
$args['autohide'] = 0;
if (wp_is_mobile()) {
$args['autohide'] = 1;
}
return $args;
});
2 In this case you need CSS customization
Quote from joicejose on July 29, 2024, 11:17
hI, I tried to add the code in Code snippet plugin. It returned the following error message "Could not update snippet. Request failed with status code 500"
hI, I tried to add the code in Code snippet plugin. It returned the following error message"Could not update snippet. Request failed with status code 500"
Quote from Pablo Borysenco on July 29, 2024, 13:17Please try this:
add_filter('woof_filter_shortcode_args', function($args){
$args['autohide'] = 0;
if (wp_is_mobile()) {
$args['autohide'] = 1;
}
return $args;
});
Please try this:
add_filter('woof_filter_shortcode_args', function($args){
$args['autohide'] = 0;
if (wp_is_mobile()) {
$args['autohide'] = 1;
}
return $args;
});
Quote from joicejose on July 29, 2024, 19:36Hi, I tried the snippet and it worked. However, when the filter is open, it overlays the products ( screenshot in the link). https://ibb.co/mGXVpBH
I have one more question ; I have set up the product layout as 4 products in column in the theme. However, on the product category pages, when pagination is used to open the next page, the page layout is amended by the plugin and the plugin layout takes over the standard layout. ( I have changed the theme pagination to standard woocomerce pagination by code, as advised by you for a previous support question, to improve the filter performance). Is it possible to avoid the filter influence on pagination?
Here's a link to one of the product category pages https://opticone.ae/product-category/cheapbestglasses/
Hi, I tried the snippet and it worked. However, when the filter is open, it overlays the products ( screenshot in the link). https://ibb.co/mGXVpBH
I have one more question ; I have set up the product layout as 4 products in column in the theme. However, on the product category pages, when pagination is used to open the next page, the page layout is amended by the plugin and the plugin layout takes over the standard layout. ( I have changed the theme pagination to standard woocomerce pagination by code, as advised by you for a previous support question, to improve the filter performance). Is it possible to avoid the filter influence on pagination?
Here's a link to one of the product category pages https://opticone.ae/product-category/cheapbestglasses/
Quote from Pablo Borysenco on July 30, 2024, 10:41Hello
when the filter is open, it overlays the products - It looks like it's a conflict with the theme styles. Unfortunately I don't see this error on your site.
Try to add this code in function.php
add_filter('loop_shop_columns',function(){
return 4;
});
Hello
when the filter is open, it overlays the products - It looks like it's a conflict with the theme styles. Unfortunately I don't see this error on your site.
Try to add this code in function.php
add_filter('loop_shop_columns',function(){
return 4;
});