Shopify themes, liquid, logos, and UX
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 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.
Solved! Go to the solution
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.
{% 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!
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.
{% 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!
Do you happen to know how to do the same for all pages? I can't find info anywhere
Hi @7lives
You just need to remove some code.
<style>
.header__heading-logo-wrapper {
display: none;
}
</style>
And save.