how can i remove announcement bar and footer menu on my cart page only

Solved

how can i remove announcement bar and footer menu on my cart page only

nijntjelover
Explorer
78 0 14

Hi how can i remove my announcement bar and footer menu on the shopping cart ONLY

 

website url is luva-parfums.nl

 

thanks

Accepted Solutions (2)

Made4uo-Ribe
Shopify Partner
7894 1905 2334

This is an accepted solution.

Hi @nijntjelover 

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 </body> tag and paste the code below before the tag. 

 

{% if template.name == 'cart' %}
<style>
.shopify-section-group-header-group, footer.footer {
    display: none;
}
</style>
{% endif %}

 

And Save. 

result:

Made4uoRibe_0-1725295394930.png

 

 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Made4uo-Ribe
Shopify Partner
7894 1905 2334

This is an accepted solution.

You like to leave the header right, yes we can do that. Please, replace the code on this code below. Thanks!

 

{% if template.name == 'cart' %}
<style>
.announcement-bar, footer.footer {
    display: none;
}
.utility-bar--bottom-border {
    border: 0;
}
</style>
{% endif %}

 

And save. 

Example Result:

Made4uoRibe_0-1725303541796.png

 

 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
7894 1905 2334

This is an accepted solution.

Hi @nijntjelover 

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 </body> tag and paste the code below before the tag. 

 

{% if template.name == 'cart' %}
<style>
.shopify-section-group-header-group, footer.footer {
    display: none;
}
</style>
{% endif %}

 

And Save. 

result:

Made4uoRibe_0-1725295394930.png

 

 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.
nijntjelover
Explorer
78 0 14

Is there a way to edit the code so it would still show the menu bar on top and just delete the 2 announcement bars? Now it deleted the entire header section. tnx

Made4uo-Ribe
Shopify Partner
7894 1905 2334

This is an accepted solution.

You like to leave the header right, yes we can do that. Please, replace the code on this code below. Thanks!

 

{% if template.name == 'cart' %}
<style>
.announcement-bar, footer.footer {
    display: none;
}
.utility-bar--bottom-border {
    border: 0;
}
</style>
{% endif %}

 

And save. 

Example Result:

Made4uoRibe_0-1725303541796.png

 

 

 

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 is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.