We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Hello Experts. Please help me in removing the header logo for a particular page

Solved

Hello Experts. Please help me in removing the header logo for a particular page

Zatura
Tourist
15 0 5

Hello Experts,

 

Please save my life by helping me with this problem.

 

I want to remove the header logo for a particular page. In my case it is customer sign in page. Please help me achieve this. It should be visible in all other pages. 

This is the page >> https://zatura.in/account/login

I have attached the screen-recording below for further reference. 

 

Thanks in advance.

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3079

This is an accepted solution.

Hi @Zatura 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </head> tag and paste the code below before the <script>.

Check for the example below. 

 

Made4uoRibe_0-1703796859867.png

 

{% if template == 'customers/login' %}
<style>
.header__heading-logo-wrapper {
    display: none;
}
</style>
{% endif %}

 

And save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 4 (4)

Made4uo-Ribe
Shopify Partner
10211 2427 3079

This is an accepted solution.

Hi @Zatura 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes"

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "theme. Liquid" file. Find the </head> tag and paste the code below before the <script>.

Check for the example below. 

 

Made4uoRibe_0-1703796859867.png

 

{% if template == 'customers/login' %}
<style>
.header__heading-logo-wrapper {
    display: none;
}
</style>
{% endif %}

 

And save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Zatura
Tourist
15 0 5

Thanks @Made4uo-Ribe 

You are a superstar!!!

7lives
Visitor
2 0 0

Do you happen to know how to do the same for all pages? I can't find info anywhere

Made4uo-Ribe
Shopify Partner
10211 2427 3079

Hi @7lives 

You just need to remove some code. 

<style>
.header__heading-logo-wrapper {
    display: none;
}
</style>

And save. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.