Shopify themes, liquid, logos, and UX
Hi,
I am using the Impact theme, and would like to delete the page title from one of the pages - Can you please let me know how I can do it?
Solved! Go to the solution
This is an accepted solution.
Please update the code
{% if page.handle == "you-page-handle" %}
<style>
.page .h1.text-center {
display: none;
}
</style>
{% endif %}
Hello @ayalturki
can you share store url
If you require further help to optimize your store, please don’t hesitate to reach out.
This contribution will always benefit you and you will get my full help easily and you can contact me easily.
Hello @ayalturki ,
You can disable it from theme product settings.
If can't find the option, please follow
Follow these steps:
1. Go to Online Store -> Theme -> Edit code
2. Open your theme.css file and paste the following code at the bottom:
.product-info__title.h2 {
display: none;
}
Thanks
Thank you @Guleria for the response - I am trying to remove the title from a page template that I created (it is not a product page). I tried your code but nothing happened
Ohh my mistake the code I provided was for product page title.
To remove title from specific page template please follow:
Edit theme.liquid search for </body> and just before it add this code
{% if page.handle == "you-page-handle" %}
<style>
.heading {
display: none;
}
</style>
{% endif %}
Note: Replace "you-page-handle" with your page handle.
e.g. my page url is example.com/pages/about-us
In this case my page handle will be "about-us"
If still not working please share the page URL.
Thanks
This is an accepted solution.
Please update the code
{% if page.handle == "you-page-handle" %}
<style>
.page .h1.text-center {
display: none;
}
</style>
{% endif %}
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025