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

Quick search questions

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.

Hello!

I have a few questions about the Quick search.

  1. If checkbox is used for the filter, can it be done to show only 5 categories with a button"show more" like in the regular product filter
  2. Can the price filter be something else than a slider. Because the shop has one extremely expensive item - 8,500 BGN (most products are between 5-200 BGN) and in this case the slider is not useful. Could it be a radio filter with a few options. For ex: 0-50, 51-100, 101-200 and etc.
  3. How to change the"Order by" titles. I am looking at this solution but I am not sure I understand what to do. - https://products-filter.com/hook/woof_qs_get_template_structure/#/woot-gallery-woof

    Thank you!

Hello Simeon

1/2 - Unfortunately this filter does not have such a feature.

3 - You can translate this as normal string  OR  use hook in functions.php.  An example:

add_filter('woof_qs_get_template_structure', 'change_title');

function change_title($data) {

if (isset($data['price'])) {

$data['price']['title'] ="Your  custom  title  for  price";

}

if (isset($data['title'])) {

$data['title']['title'] ="Your  custom  title  for  title";

}

if (isset($data['sku'])) {

$data['sku']['title'] ="Your  custom  title  for  sku";

}

return $data;

}

 

Thank you very much!

I have a few more questions. I want the grid to have 4 columns on bigger screens. This is why I used this code:

@media (min-width: 87rem) {
.woof_qs_result.woof_qs_list_grid_1 .cards__item {
width: 25% !important;
}
}

But for some reason, it doesn't work. I added it in the CSS file in the grid template.

I also want to translate the"no results match"search input" in the multi dropdown, but I cannot find it as a string. Where can I translate it?

Please drop me exact link to the issue

Its in the header. Click on"Каталог" in the top right.

 

Please  add  this  CSS

@media (min-width: 56rem) {
body .woof_qs_result.woof_qs_list_grid_1 .cards__item {

 width: 25%;

}
@media (min-width: 87rem) {
body .woof_qs_result.woof_qs_list_grid_1 .cards__item {
width: 25% !important;
}
}
Try in  file  - \wp-content\plugins\woocommerce-products-filter\ext\quick_search\js\quick_search.js
jQuery("select.woof_qt_select").chosen({
no_results_text:"Add your text"
});

I have added both codes, but none of them work.

https://ibb.co/Swx0sCM
https://ibb.co/zhx6Cth
https://ibb.co/sJmY8jT

Hello

Please clear all cache and Ctrl+F5  and do a test

I cleared them. And also I am opening from incognito.

Look at the screenshot - https://prnt.sc/IlqN-bpx5Rmt

Doest it appear correctly from your side?

https://prnt.sc/IlqN-bpx5Rmt   - I gave you a different code.

Maybe you inserted the custom code in the wrong place or didn't clear the cache.

Now it works. For some reason when I add it in the CSS file of the template it doesn't work. I had to add it in the header.

What about the js code? because it also doesn't work?

Hello

My  test - https://c2n.me/4l59AOE.jpg

It works now!

Thank you!

Welcome;)