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

Re: Remove Header from Metaobject Page I Created in Debut Theme

Solved

Remove Header from Metaobject Page I Created in Debut Theme

Pelakin
Tourist
7 0 1

Hello!

I am not a coder and don't understand much with html so I created a new "page" for my site that is apparently a metaobject?? You can see the page here:

https://takonlife.com/pages/whytakonworks/body-healthy-sleep

 

I'd like to be able to remove the header from just this page, but keep the logo. So I want to remove the navigation menu, search bar and the cart icon. 


How would I do it for only this page?

Thank you!!


Brett

Accepted Solution (1)

Guleria
Shopify Partner
4299 825 1189

This is an accepted solution.

Hello @Pelakin ,

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your theme.scss.liquid or  theme.scss.css file and paste the following code below:

 

body.template-metaobject\/new_page .site-header__icons {
    display: none;
}
body.template-metaobject\/new_page nav#AccessibleNav {
    display: none;
}

 

Thanks

 

 

 

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.

View solution in original post

Replies 2 (2)

Guleria
Shopify Partner
4299 825 1189

This is an accepted solution.

Hello @Pelakin ,

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your theme.scss.liquid or  theme.scss.css file and paste the following code below:

 

body.template-metaobject\/new_page .site-header__icons {
    display: none;
}
body.template-metaobject\/new_page nav#AccessibleNav {
    display: none;
}

 

Thanks

 

 

 

- Elevate Your Store with Expert Shopify Services. Email: guleriathakur43@gmail.com - Need a quick fix or a tailored customization? I’ve got you covered.
- Looking to enhance your pages? Try GEMPAGES- a powerful drag & drop page builder.
- Let’s make your store stand out. Get in touch today!
- My Apps: Productify Groups – Smart product grouping made easy.
Pelakin
Tourist
7 0 1

Thank you, Guleria. That worked perfectly!

Brett