3

Fake Sale Popup

  • Done

Avatar
smpsllc

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.

A

Activity Newest / Oldest

Avatar

Jack Richardson

Status changed to: Done

Avatar

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 ->
developer.chrome.com/docs/devtools/
Regards, Jack Richardson