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?
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?
Hello @ayalturki
can you share store url
Hello @ayalturki ,
You can disable it from theme product settings.
If can’t find the option, please follow
Follow these steps:
Go to Online Store → Theme → Edit code
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 and just before it add this code
{% if page.handle == "you-page-handle" %}
{% 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
Thank you @Guleria - I have made the change but nothing happened
Thank you
Please update the code
{% if page.handle == "you-page-handle" %}
{% endif %}
Thank you @Guleria - It did work ![]()