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

Links

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! Please tell me how do I create a block with links to pre-filtered pages? It is desirable that the block be located above the goods, but if this is not possible, then in the sidebar above the filters. I want to make 8-12 links in each subcategory. Thanks!

Hello! I hope I undertood you right. To create links to pre-filtered pages:

1)  got to the plugin settings -> tab Advanced -> SEO URL request -> Yes -> Save
2) Go to your shop page with WOOF filter active
3) Select each filter combination you want (color, size, etc.)
4) Copy the URL from browser address bar
5) Use these URLs in your links block (HTML widget in sidebar or shortcode above products)

Example links:

- https://demo.products-filter.com/shop/swoof/color-red/product_cat-clothing/
- https://demo.products-filter.com/shop/swoof/brand-diesel/product_cat-jeans/

Repeat for all 8-12 links you need. That's it!

Здравствуйте!

У меня появилось несколько новых вопросов.
1. Расположение таксономий на панели фильтров более чем в один ряд можно сделать только через smartdesigner?

2. Тоже самое про подсказки над цветными кругами в фильтре color, мне они нужны, в стандартном интерфейсе не нашел такой функции.

3. Поля для ввода текста"от и до" в фильтре цены находятся под самим ползунком и перекрывают друг друга, можно ли это изменить?

4. В режиме slider для других атрибутов, функции для ввода текста"от и до" я не нашел, это невозможно?

5. Независимо от скина ползунка на нем видны риски с значениями атрибута, можно ли сделать его гладким, чтобы были видны только значения ползунка?

6. В smartdesigner нет возможности выбрать slider?

Hello Nikolai

1. Multiple rows for taxonomies in filter panel
Smart Designer doesn't solve this - you need to use CSS to arrange filters in multiple rows. Add custom CSS like:
css.woof_container {
display: flex;
flex-wrap: wrap;
}

2. Tooltips over color circles - they are should be automatically shown https://demo-sd.products-filter.com/ , if not somewhere is CSS issue which prevent their showing

3. Price slider"from/to" input fields overlapping
This is a CSS styling issue with your theme. You need to adjust the CSS to position the input fields properly. Can you share a screenshot or site URL so I can provide specific CSS?

4."From/To" text inputs for taxonomies is not possible to show as it text data

5. Remove tick marks from slider, make it smooth
This depends on the slider skin you're using. Some skins show steps/ticks by default. Try different slider skins in settings, or use CSS to hide the ticks:
css.ui-slider .ui-slider-tick-mark {
display: none;
} - but this is just an idea

6. Slider option in Smart Designer - no, just radio, checkbox, switcher and color

For further support please provide purchase code:

https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png

 

Hello, Alex

Inserted the license code.
I'm trying to send a screenshot of the filter by price, a slider on top of the input fields, it looks like the picture is inserted with an error. Below is a link to image hosting.
I would like to have the input fields under the slider in one line, each 40% of the length of what it is now. My theme is Woodmart.
And I noticed one more thing, in the breadcrumbs link, after filtering by attribute, he writes Product + attribute (this can be seen in the screenshot). In the filter settings, I removed the word Product from the name, but how can I remove it from bread crumbs? Or is that no longer a question for you?

123

https://postimg.cc/jCN8RXqF

You wrote to uncheck the slider, where are these ticks? The css code didn't work. I can't remove the slider tick. I've tried all the skins. In addition, the slider values include all attribute values, even empty ones for this category. I need to solve these problems. And with input fields.

Hello Nikolai

  1. https://share.pluginus.net/image/i20251212132419.png - looks like you mean this, if yes update in file views\shortcodes\woof_price_filter_slider.php code
    <div class="woof_price_filter_txt_slider">
    <div class="woof_price_filter_txt_slider_inputs">
    <label class="woof_wcga_label_hide" for="<?php echo esc_attr($uniqid) ?>_from"><?php esc_html_e('Price from', 'woocommerce-products-filter') ?></label>
    <input id="<?php echo esc_attr($uniqid) ?>_from" type="number" class="woof_price_filter_txt woof_price_filter_txt_from" placeholder="<?php echo esc_attr($min_price) ?>" data-value="<?php echo esc_attr($min) ?>" value="<?php echo esc_attr($min_price) ?>" />&nbsp;
    <label class="woof_wcga_label_hide" for="<?php echo esc_attr($uniqid) ?>_to"><?php esc_html_e('Price to', 'woocommerce-products-filter') ?></label>
    <input id="<?php echo esc_attr($uniqid) ?>_to" type="number" class="woof_price_filter_txt woof_price_filter_txt_to" placeholder="<?php echo esc_attr($max_price) ?>" name="max_price" data-value="<?php echo esc_attr($max) ?>" value="<?php echo esc_attr($max_price) ?>" />
    </div>

    <?php if (class_exists('WOOCS')): ?>
    &nbsp;(<?php esc_html_e(get_woocommerce_currency_symbol()) ?>)
    <?php endif; ?>
    <div class="woof_float_none"></div>
    </div>

    https://share.pluginus.net/image/i20251212132629.png - its also on ptoduction so next update will no break the code, BUT also add code to file functions.php:
    add_action('wp_footer', function () {
    ?>
    <style>

    .woof_price3_search_container .woof_container_inner{
    display: flex;
    flex-direction: column-reverse;
    }

    .woof_price3_search_container .woof_price_filter_txt_slider{
    padding-top: 15px;
    }

    .woof_price_filter_txt_slider_inputs{
    display: flex;
    justify-content: space-between;
    }

    </style>
    <?php

    }, 999);

  2. breadcrumbs, word Products - here I have an idea only: use hook woocommerce_get_breadcrumb - the main hook for breadcrumbs
    woo_breadcrumbs_trail - if Woodmart uses its own. You can use add_filter to intercept the breadcrumbs array and remove/replace"Product"
  3. ticks: ok, if you want to remove it, also add CSS code as I wrote before, here is additional code:
    .woof_price3_search_container .irs-grid-pol,
    .woof_price3_search_container .irs-grid-text{
    display: none;
    }

    Result: https://share.pluginus.net/image/i20251212133538.png

 

Hello, Alex

1. The code is not working correctly. I'll wait for the update, but for now I'll just hide it. I hope that you will make the input fields not only for the price filter.

3. ticks: Yes, the numbers are gone, but only from the price filter. How do I do this on the other sliders? And only the numbers are gone, the slider looks like this -|-|-|-|-|-|- , can this be removed? Look at the woocommerce price filter, it's flat and without numbers.

Hello Nikolai

1. Input fields positioning The code adjusts the layout through CSS. If it's still not working correctly, you can hide them temporarily while we investigate further. But also you can give me exact link here or in the secret area (but give me know here please you placed it there) https://share.pluginus.net/image/i20230222134615.png

2. Remove ticks/marks from ALL sliders (not just price) Replace the previous CSS code with this - it will work for all sliders:

/* Remove numbers from all sliders */
.irs-grid-pol,
.irs-grid-text {
display: none;
}

/* Remove tick marks (visual lines) - make slider smooth */
.irs-grid {
display: none !important;
}

Add this code also to your theme's functions.php:

add_action('wp_footer', function () {
?>
<style>
.irs-grid-pol,
.irs-grid-text {
display: none;
}

.irs-grid {
display: none !important;
}
</style>
<?php
}, 999);

 

Hello, Alex

Thanks, the code works.

Discovered new problems:

1. The option to select the maximum block height has disappeared in the advanced settings. I have only one attribute left to configure. The color type, the "Not toggled terms cunt" option also does not work. There is an opening text at the bottom, but the container itself is full-height and with all the terms. I had already set all the attributes to a height of 200 pixels. But I would like to return the setting, because I plan to upload many more products.

2. Can you tell me what needs to be written in the Show widget by logic field to hide the filter on certain categories? I want to try to leave the filter only in subcategories, since there are a lot of products in the parent categories and the search is noticeably slowing down.

3. About slow loading: of course, I haven't done caching yet, I hope that everything will change after the launch. But besides cache and ajax, are there any other ways to speed up the filter?

Hello Nikolai

 

  1. Just looked into plugin options, and I see it there: https://share.pluginus.net/image/i20260109135322.png - block should be checkbox or radio types. If you set max height but it doesn work - give us here please exect link where we can see it to help, its css issue with current wp theme. Also make your attention on option"Not toggled terms count" - its also make block size lesser
  2. To show on subcategories try to use condition: is_product_category() && get_queried_object()->parent != 0
    to hide on specific categories: !is_product_category(array('parent-slug-1', 'parent-slug-2'))
    also you can try to use this plugin https://github.com/realmag777/Show-WordPress-Widget-by-Logic
  3. Look please into advanced options of the plugin: https://share.pluginus.net/image/i20260109135742.png - here are some options to make filter appearing faster. Also you can show filter as button to make page loading faster https://demo.products-filter.com/hidden-search-form/. Also: do not use object caching in cache plugins as it make troubles sometimes, but maybe its depends of also different wp themes, if you decied use it make a lot of test as with logged in user so with logged out