Hello, I am working with the Symmetry theme, and am having trouble removing the footer on two pages (I’d like to keep the footer on all other pages). I’ve tried the help bot, etc to no avail.
Topic summary
A user needs to remove the footer from two specific pages in their Shopify store using the Symmetry theme, while keeping it on all other pages.
Proposed Solution:
- Edit the
theme.liquidfile by adding custom CSS code just above the</head>tag - The code uses Liquid conditionals to target specific pages by their handle:
{% if page.handle == "PAGE HANDLE HERE" or page.handle == "PAGE HANDLE HERE" %} <style>.footer{display:none;}</style> {% endif %}
Implementation Steps:
- Navigate to Online Store → Edit Code
- Locate and open
theme.liquid - Insert the provided code snippet
- Replace “PAGE HANDLE HERE” with actual page handles
Important Notes:
- Back up the original file before making changes
- The responder offers to write the complete code if the user provides the specific page URLs
Status: Solution provided, awaiting user implementation or follow-up for additional assistance.
Hi @SportsPlus ,
I have written custom code to get this done. To do this you will have to edit theme.liquid.
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the below code just above
{% if page.handle == "PAGE HANDLE HERE" or page.handle == "PAGE HANDLE HERE" %}
{% endif %}
Note:
-
Please take backup of the original file so that you can revert the changes.
-
Please replace “PAGE HANDLE HERE” with the handle of the page where you want to remove the footer.
If you are not comfortable editing the handle, you can provide me a list of pages where you want to remove the footer and i can write a working code for you.
If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!
Best Regards,
Makka