What's your biggest current challenge? Have your say in Community Polls along the right column.

Remove Footer Homepage

Remove Footer Homepage

martujv
Trailblazer
172 2 38

Hi! I want to remove the footer only on my homepage. It should be visible on the rest of the pages.

(Both on mobile and desktop)

 

My theme is Stiletto and my web is www.winnerofficial.com

 

I tried many codes but nothing works!

Replies 6 (6)

DeepVyas
Shopify Partner
771 10 8

Simple, just check if the page loading is homepage write condition to hide footer. 

Shopify Developer | Ⓢ : deepvyas71 | ✉ : deepvyas71@gmail.com

PageFly-Amelia
Shopify Partner
626 165 237

Hello @martujv 

This is Amelia at PageFly - Shopify Advanced Page Builder app.

 

You can try the following steps I have provided to help you solve the problem you are facing:

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Store -> Themes -> Edit Code

Step 2: Choose file theme.liquid

Step 3: Add code above the tag </head>

{% if template == 'index' %}
<style>
footer {
   display: none !important;
}
</style>
{% endif %}

 

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

martujv
Trailblazer
172 2 38

Hello! I added the code but it didn't do anything. My footer is still visible on the homepage.

PageFly-Amelia
Shopify Partner
626 165 237

You can try the code below instead

{% if template == 'index' %}
<style>
shopify-section-sections--21113060196691__scrolling_content_Lq4VHU,
        shopify-section-sections--21113060196691__newsletter_compact_kp96tD,
        shopify-section-sections--21113060196691__quote_c7G8PQ,
        shopify-section-sections--21113060196691__rich_text_HQiMUU,
        shopify-section-sections--21113060196691__footer{
   display: none !important;
}
</style>
{% endif %}

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

martujv
Trailblazer
172 2 38

thanks for the reply but it didn't work

martujv
Trailblazer
172 2 38

The footer is the whole footer section, the one that is visible on all the pages, not only one line. This would include also stuff like the newsletter and the legal stuff, so yeah, the whole footer basically. I am looking for a code to hide the whole footer section on the homepage