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

Custom Taxonomy Full Name or Abbreviations

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.

Using the slider filter control, sometimes the From and To labels show the full name of the attribute, other times it seems to show the slug.

For example, one slider range's attributes are"Fair, Good, Very Good, Excellent".  Sometimes the To and From labels show"Excellent".  Other times it shows"EX".

Is there a way to control this behaviour?  I don't see anything in the options.

Thanks.

Hello

Try

In file – \wp-content\plugins\woocommerce-products-filter\views\shortcodes\woof_price_filter_slider.php –  delete “min” – https://c2n.me/3W89jnk.png
In file – wp-content\plugins\woocommerce-products-filter\ext\slider\index.php –  delete “min” – https://c2n.me/3W89nW1.png
in file – \wp-content\plugins\woocommerce-products-filter\js\ion.range-slider\js\ion-rangeSlider\ion.rangeSlider.js  – add code  https://c2n.me/3W89tJr.png :
onRedraw: null,
this.callOnRedraw();
        callOnRedraw: function () {
            if (this.options.onRedraw && typeof this.options.onRedraw === “function”) {
                this.options.onRedraw(this.result);
            }
        },
in file \wp-content\plugins\woocommerce-products-filter\ext\slider\js\html_types\slider.js  add code https://c2n.me/3W89VMM.png
onRedraw:function(ui){
jQuery(input).prev(‘span’).find(‘.irs-from’).html(titles[ui.from]);
jQuery(input).prev(‘span’).find(‘.irs-to’).html(titles[ui.to]);
}
Do test please!