Campaign FAQs

How can I hide a pop-up on a specific page of my site?

On any page you want to remove the pop-up, add the following snippet. For example, to remove on the home page, add this snippet to templates/index.liquid

<style>
  #ig-discount-message-box {
    display: none;
  }
</style>

Last updated