Hi there
Thank you so much, this seemed to do the trick, however the popup is now coming up on all pages, and not only the home page – is there a way to limit it to the home page only please? 🙂
Please try this snippet to enabled only in homepage:
add_filter(
'woodmart_promo_version_cookie_expires',
function() {
if (is_home()) {
return 0.1; // Days.
}
return 0; // Set to 0 to disable on other pages.
}
);