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

Unexpected multiselection allowed with Husky labels filter

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 all,

I am using Husky labels filters for my woocommerce products but I don't succeed in setting the behavior that I expect.

When I click on a label filter while another one is ever ticked, both of them stay ticked while I expect only the last one ticked.
As a consequence, I need to untick manually the previous selection before to change it.

Does by chance anyone from here know how to adjust that behavior from the settings?
I tried all the additional options that I have seen but that was not conclusive.

Thanks a lot in advance for your help about this cool extension !

Pic showing several labels ticked simultaneously
https://www.lorneige.com/boutique

Hello

Unfortunately, this type of filter does not have such a feature.

But you can try to customize this using the smart designer - https://share.pluginus.net/image/i20240513114321.png

Please watch this video - https://products-filter.com/video#OFUGQXzeH8M

 

Thank for your quick answer Pablo, your video is quite handsome !
I will deep investigate Smart Designer, that seems a good track.

Great! Welcome;)

Hi again,

I have followed the instructions on the video you shared and I am closed to reach the objective.
There are still 2 complex points for which I have not found a solution but maybe someone has the solution:

  • Labels are aligned vertically on a column while I need them horizontally on a line (before using smart designer it was on a line and well compatible with mobile / responsive)
  • Now a reset button is appearing at the right of the selected label but I don't find parameter or appropriate custom css to hide them for all contexts

I share the solution I found about the 2 remaining points mentioned on my previous message if it can help someone someday.
To do so, we can use custom CSS code to supercharge the default Husky plugin behavior:

/* Hide red buttons */
.woof_radio_term_reset {
    display: none !important;
}
/* Resize categories container */
/* Big screens */
.woof_block_html_items {
   width: 900px;
}
/* Tablets */
@media (max-width: 1024px) {
   .woof_block_html_items {
      width: 700px;
   }
}
/* Small screens */
@media (max-width: 767px) {
   .woof_block_html_items {
      width: 500px;
   }
}
/* Phones */
@media (max-width: 479px) {
   .woof_block_html_items {
      width: 100%;
   }
}

Thanks all for your help, topic can be closed !

hello

great!  Thank you for your cooperation