Removing the email signup banner on password page (Taste theme)

Solved

Removing the email signup banner on password page (Taste theme)

Palam1das
Visitor
1 0 0

Hi, I'm using my password page as a landing page to collect emails before my products arrive at the warehouse.

I'd like to use Klaviyo form to attract more attention, therefore need to override the preexisting Shopify sign up form from the codes. I don't know where to find it. 

In Klaviyo help, they tell me to find the code and Surround the default Shopify signup form with comment tags to prevent it from showing on your site

  1. Add {% comment %} to start the tag 
  2. Add {% endcomment %} to close the tag.

Where in which liquid file should I do it? 

PS. website www.palamidas.co

Thanks!

Accepted Solution (1)

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

@Palam1das 

 

Please add the given code above </body> in theme.liquid

 

layout >> theme.liquid

 

<style>
.password .email-signup-banner__box.banner__box.newsletter.newsletter__wrapper {
display: none!important;
}
</style>

 

after looks,

techlyser_ecom_0-1674741548049.png

 

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Reply 1 (1)

niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

@Palam1das 

 

Please add the given code above </body> in theme.liquid

 

layout >> theme.liquid

 

<style>
.password .email-signup-banner__box.banner__box.newsletter.newsletter__wrapper {
display: none!important;
}
</style>

 

after looks,

techlyser_ecom_0-1674741548049.png

 

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com