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

Tooltip for filter: change animation

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.
Hi,
please look at this video: https://www.screencast.com/t/2dbQO3taOCv

I would change animation for tooltip, this kind is not so good.

How to?

Thanks

Hello

Please  drop  me exact link  to  the  issue.

My plugin has no animation like this.

Hi Pablo,

https://demo4.brandingaddicted.com/shop/

Il would be possible to have an animation like tooltips below of yours?

Thanks

Try  to add  CSS:

.woof p:hover.woof_tooltip span.woof_tooltip_data {

margin-left: unset;

left: calc( 50% - 25px);

}

this style removes animation. But it seems to be in conflict with the current theme.

Hi Pablo,

i added this code, but result is not so good: when you move over the mouse, tooltip moves.

Could I have a simple fade-in and fade-out without movements?

Let me know, thanks a lot!

 

Hello

Could I have a simple fade-in and fade-out without movements? - Yes! But that doesn't depend on my plugin - https://share.pluginus.net/image/i20211027123939.png This is how it works - https://share.pluginus.net/video/v20211027124250.mp4

Try to make a test page. Add  shortcode  [woof] in  content

 

Hi Pablo,

this is the test page: https://demo4.brandingaddicted.com/elementor-7110/

Could you kindly help me to bypass this problem?

Thanks

Hello

Yes, it looks like a problem with a third-party sidebar

Try  to  use  - https://products-filter.com/extencion/slideout

Hi,

thanks for suggestion, I am using it now.

I would ask you something:

  1. How to add a title to sidebar? I would add"FILTRA PRODOTTI" inside the slideout, at the top.
  2. How to add an overlay layer to the rest of page when slideout is active?

Let me know please, thanks.

 

Hello

1)You can use  a  hook - 'woof_print_content_before_redraw_zone'

add_filter('woof_print_content_before_redraw_zone', function($content){

return"<h3>Any text!!!!!</h3>"

});

2) unfortunately the plugin does not have such a feature

Hi,

thanks for hook, it worked.

For second question, I solved with a little css workaround: when slideout panel is open, I added a huge shadow and it seems an overlay layer.

div.woof-slide-out-div.woof_slideout_default.ui-slideouttab-panel.ui-slideouttab-left.ui-slideouttab-ready.ui-slideouttab-open {
border: 0px!important;
box-shadow:0 0 0 10000px rgba(0,0,0,.50);
}

See you soon.

Thanks

 

Hello

Great! Welcome;)