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

Centering Filter Names in Sidebar

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.

1  I am using the the pro version HUSKY - Products Filter Professional for WooCommerce widget in my sidebars.  I would like to center the Filter names within the sidebar.  Currently the filter names are left justified
If I need to use css code what would that code need to  be and would I place it in the plugin settings\advanced\custom css code section? See https://talialmogpaintings.com/originals/

2. How would I change the name of the"In Stock" filter name to"In Stock Only"

3. I have the Apply Filters button on top and bottom of my sidebar.  How can I increase the space between the"Search By Price Filter" and the Apply Filters Button and between the"In Stock" filter and the"Apply Filters" Button?

See https://talialmogpaintings.com/originals/

 

Hello

Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png

License key posted to private area

Hello

1)  Please  add CSS:

.woof_container_inner h4 {
text-align: center;
}

2)  read  this - https://products-filter.com/hook/woof_ext_custom_title_xxx

You can try:

add_filter( 'woof_ext_custom_title_by_instock' ,'woof_ext_custom_title_instock');
function woof_ext_custom_title_instock ($title){
return"In Stock Only";

}
3 add  CSS
.woof .woof_submit_search_form_container {
margin: 50px 0 50px 0 !important;
}

For # 2 your code does not seem to work.   Please check it and advise?

add_filter( 'woof_ext_custom_title_by_instock' ,'woof_ext_custom_title_instock');
function woof_ext_custom_title_instock ($title){
return"In Stock Only";

hello

You missed the closing element"}" - https://share.pluginus.net/image/i20231030131332.png

The code is there in custom css as you wrote it but no effect on the front end of the website.  I cleared cache just to make sure but still no change

add_filter( 'woof_ext_custom_title_by_instock' ,'woof_ext_custom_title_instock');
function woof_ext_custom_title_instock ($title){
return"In Stock Only";

}

Hello

you should paste this code in functions.php of the current theme