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 responsive nad toggle | stroke

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 bought your add-on. Unfortunately I can't do mobile friendly and mobile toggle. I found this link: https://products-filter.com/hook/woof_block_toggle_state/, where should I paste this? Thank you.

Hello

Please  paste  it  in  functions.php of the  current theme

Dear Pablo, Nothing is happening, I have some conflicts on the website. Please, can you check - I've been trying for two days. :(

I  checked  it. It looks like you misunderstood what this code is for - this code works with this option - https://c2n.me/4egxCgm.png

What do you use to display the filter (widget/shortcode)?

Dear Pablo,

I want to make 4 columns on desktop: 1.Price 2.Category, 3. Color, 4.Size.
On  mobile like this: https://i2.paste.pics/2b930f3388ad5b1870d12c38769610b6.png

Thank you.

Hello

Please  add  this  code  in functions.php of the  current theme

add_filter('woof_filter_shortcode_args', function($args){

if (wp_is_mobile()) {
$args['autohide'] = 1;
}

return $args;
});

Dear Pablo,
1) It works now but the mobile filter is not responsive, check the image -> https://paste.pics/510494141e7869d0c261ab5648d6a3a9
2. How can I remove the filter frame and background on mobile / desktop background, check the image -> https://paste.pics/61f8b23959b3578cc1401ca3c2d5619c
3. How can I set a more modern price slider in another color like this -> https://paste.pics/af26d092fcba23bfde6ca50e32662024

Thank you so much for your help.

Hello

1 ) Add CSS

.uncode-sidecart-mobile-disabled  .woof_auto_4_columns .woof_container {

width: 100%;

}

2) you need customization of the CSS code

body .woof_sid_flat_grey {

border: unset;

}

3 check  on Design tab - https://share.pluginus.net/image/i20211210142136.png

 

Thanks Pablo, when i put this code .uncode-sidecart-mobile-disabled .woof_auto_4_columns .woof_container {
width: 100%; I have an error on the desktop, the filters are sorted one below the other. Check  the image - https://paste.pics/FAEPF

On the desktop version they should be arranged vertically.

Regards.

Hello

Try  to add  in  functions.php

add_filter('body_class', function($classes, $class) {

if (wp_is_mobile()) {

$classes[] = 'woof_is_mobile';

}

return $classes;
}, 10, 2);

 

And  add CSS:

.woof_is_mobile .woof_auto_4_columns .woof_container {

width100%;

}

 

Dear Pablo, it's not working. Nothing is happening....

Please remove old CSS - https://c2n.me/4ejHw40.png

Thank you Pablo, it's working now. :)

Another question how can I change the color of the ion range slider?

Hello

To change the style of the slider  ->Design tab -> https://share.pluginus.net/image/i20211214091454.png

Dear Pablo, i need change color not a style.

Hello

Use this code:

body .woof_sid_flat_grey .irs-from, body .woof_sid_flat_grey .irs-to, body .woof_sid_flat_grey .irs-single {
color: #fff;
background: #97b6be;
}
Use  your  color codes.

Thank You Pablo :)

Welcome;)

Dear Pablo, I need another help. I have activated"show image of variation" but I have a product display error. a variation image appears above the product. check image - https://ibb.co/LNQh0G9

Hello

It looks like the current theme is incompatible with this functionality. This can be if the theme uses custom templates for products and does not use standard hooks.