Removing Page Title on a specific page - Dawn Theme

Topic summary

A user needed to remove the page title from a specific page (“Social Media”) in their Dawn theme Shopify store.

Solution provided:

  • Insert custom CSS code in theme.liquid file above the </head> tag
  • Use Liquid code to target specific pages by URL path
  • Replace ‘policies’ in the code snippet with the actual page handle

Follow-up request:
The user then asked to hide the entire footer (bottom menu and other information) on the same page, keeping only the header and three buttons visible.

Additional solution:
Similar approach using Liquid conditionals in theme.liquid to hide footer elements on the targeted page.

Outcome:
Both customizations were successfully implemented. The discussion is resolved with the user confirming everything works as intended.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

Hello. I would like to remove the title of a specific page so that it does not appear. All the posts I have seen are from all the pages together or from a blog. I would like to remove “Social Media”.

The link is the following: www.isardsports.com/pages/social-media

1 Like

Hi @Harny ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:

{% assign full_url = request.host | append: request.path %}
{% if full_url contains 'policies' %}

{% endif %}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Great, it worked, I just had to change “policies” to the title of my page. Thanks a lot!

I’d like to ask, can the entire footer of this particular page be removed as well?
I don’t want the bottom menu or any other information in the footer to appear. Just the header and the three buttons.

1 Like

Hi @Harny ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:

{% assign full_url = request.host | append: request.path %}
{% if full_url contains 'policies' %}

{% endif %}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like

Now it looks great. Thanks again and for replying so quickly.

1 Like

@Harny , No problem. Have a good day :heart_eyes:

1 Like