Removing Page Title from a single page on the Impact theme

Solved

Removing Page Title from a single page on the Impact theme

ayalturki
Tourist
5 0 1

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? 

Accepted Solution (1)
Guleria
Shopify Partner
4067 798 1147

This is an accepted solution.

Please update the code

{% if page.handle == "you-page-handle" %}
<style>
.page .h1.text-center {
    display: none;
}
</style>
{% endif %}
- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder

View solution in original post

Replies 7 (7)

AK_Design_Dev
Shopify Partner
187 16 16

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.


Your Willpower Contribution Link:-

Contribution


Contact On My Mail :-mail@gmail.com

Guleria
Shopify Partner
4067 798 1147

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


 

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
ayalturki
Tourist
5 0 1

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 

Guleria
Shopify Partner
4067 798 1147

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 

- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
ayalturki
Tourist
5 0 1

Thank you @Guleria - I have made the change but nothing happened 

 

Thank you

Guleria
Shopify Partner
4067 798 1147

This is an accepted solution.

Please update the code

{% if page.handle == "you-page-handle" %}
<style>
.page .h1.text-center {
    display: none;
}
</style>
{% endif %}
- Custom themes, UI/UX design, ongoing maintenance & support.
- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
ayalturki
Tourist
5 0 1

Thank you @Guleria - It did work 🙂