Please could you add an option to customize the Fake Sale Popup and to make it hide on home page and display only on the selected pages, thanks.
Completed
May 11, 2026
Hello @smpsllc,
For this time you may use few lines of custom css to make it work. Example:
/* to hide Fake Sale Popup on shop */
body.woocommerce-shop #sales-booster-popup {
display: none;
}
/* OR to hide Fake Sale Popup on home */
body.home #sales-booster-popup {
display: none;
}
classes you may find via dev tools of browser ->
https://developer.chrome.com/docs/devtools/
Regards, Jack Richardson
Hello @smpsllc, For this time you may use few lines of custom css to make it work. Example: /* to hide Fake Sale Popup on shop */ body.woocommerce-shop #sales-booster-popup { display: none; } /* OR to hide Fake Sale Popup on home */ body.home #sales-booster-popup { display: none; } classes you may find via dev tools of browser -> https://developer.chrome.com/docs/devtools/ Regards, Jack Richardson