Forums
Home / Plugin: TI WooCommerce Wishlist / Wishlist Popup
(@polarracing)
2 years, 3 months ago
Hi,
is it possible to stop the wishlist popup from auto closing or to increase the time before it auto closes without editing your js files?
Thanks
(@templateinvaders)
2 years, 2 months ago
Hi @polarracing
In version 2.0.2 was added the filter tinvwl_popup_close_timer.It allows adjusting the time after mentioned popup will close.
tinvwl_popup_close_timer
You can use it like:
add_filter( 'tinvwl_popup_close_timer', function () { return 9999999; } );
Great, thanks.
Will give it try today.