This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Problem with tooltip in Advanced option

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Problem with tooltip in Advanced option Reply To: Problem with tooltip in Advanced option

#41516
Ernest MarcinkoErnest Marcinko
Keymaster

You actually need more code, an event handler for the mouseout event for the tooltip buttons to remove the class names, like:

$('body').on('mouseout', '.tooltipped-s', function(){
    $(this).removeClass('tooltipped tooltipped-s');
});

..or something similar. This is way beyond the scope of our support, you may need to ask a developer about this.