
costumevault(@costumevault)
16 Posts
Customers
Quote from costumevault on January 25, 2023, 04:26
The tool tip for the image used (size is 32px x 32px), is too large for the image and covers it. I've decided to turn off the tool tip. I have set it to NO in the Products Filter Tab in WooCommerce settings. Is there some CSS I can use the image formatting box to control it? Or some css for the theme? i'm using DIVI theme.
The tool tip for the image used (size is 32px x 32px), is too large for the image and covers it. I've decided to turn off the tool tip. I have set it to NO in the Products Filter Tab in WooCommerce settings. Is there some CSS I can use the image formatting box to control it? Or some css for the theme? i'm using DIVI theme.

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on January 25, 2023, 12:56
Hello
Please paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png
and drop me exact link to the issue(enable the tool tip)
Hello
Please paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png
and drop me exact link to the issue(enable the tool tip)

costumevault(@costumevault)
16 PostsTopic Author
Customers
Quote from costumevault on January 27, 2023, 05:09
Please visit this link: https://thecostumevault.ca/product-category/hats/
Hover over one of the images in the filter for the Hat Style.
The tooltip covers the image.
Please visit this link: https://thecostumevault.ca/product-category/hats/
Hover over one of the images in the filter for the Hat Style.
The tooltip covers the image.

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on January 27, 2023, 11:52
Hello
You have two options for solving this problem:
1 If you want to display the description of terms: Please add CSS:
.woof_container_image p:hover.woof_tooltip span.woof_tooltip_data
bottom: 100%;
2 Hide the description of terms: Please add in functions.php:
add_filter('woof_image_allow_term_desc', function($show, $tax_slug){
return false;
},99,2);
Hello
You have two options for solving this problem:
1 If you want to display the description of terms: Please add CSS:
.woof_container_image p:hover.woof_tooltip span.woof_tooltip_data
bottom: 100%;
2 Hide the description of terms: Please add in functions.php:
add_filter('woof_image_allow_term_desc', function($show, $tax_slug){
return false;
},99,2);

costumevault(@costumevault)
16 PostsTopic Author
Customers
Quote from costumevault on January 28, 2023, 17:53
The first piece of code, puts the description of terms immediately above the image. Works great! Thank you very much
The first piece of code, puts the description of terms immediately above the image. Works great! Thank you very much

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on January 30, 2023, 13:26
Hello
Great! Welcome;)
Hello
Great! Welcome;)