Have your say in Community Polls: What was/is your greatest motivation to start your own business?

How do I remove page titles on a specific page template in Pipeline theme?

Solved

How do I remove page titles on a specific page template in Pipeline theme?

devangregori
Visitor
3 0 2

Hi all,

 

I am using the Pipeline theme and I want to remove the page title from the Lookbook page template (example is this page: https://devangregori.com/pages/fw-20-lookbook)

I found this line of code on page.lookbook.liquid:

<h1 class="text-center h3 page__title" data-page-default-title>{{ page.title }}</h1

and added this directly below it:

{% unless page.handle == "page-title" %}
{{ page.title }}
{% endunless %}

There are three templates I'd like to remove page titles for any page attributed with that template which is why I'd like to remove it from the template code itself. Open to other suggestions however!

My site is: https://devangregori.com and the shopify URL is https://devan-gregori-studio.myshopify.com/

 

Thanks in advance,

Devan

Accepted Solution (1)

ZestardTech
Shopify Partner
5905 1066 1412

This is an accepted solution.

Hello There,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find layout/theme.liquid and paste this at the bottom of the file:

{% if page.handle == "fw-20-lookbook" %}
<style>
h1.title--overlay.h2 {
display: none;
}
</style>
{% endif %}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing

View solution in original post

Replies 3 (3)

ZestardTech
Shopify Partner
5905 1066 1412

This is an accepted solution.

Hello There,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find layout/theme.liquid and paste this at the bottom of the file:

{% if page.handle == "fw-20-lookbook" %}
<style>
h1.title--overlay.h2 {
display: none;
}
</style>
{% endif %}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
devangregori
Visitor
3 0 2

Amazing, this did the trick. Thank you so much for the help!

ZestardTech
Shopify Partner
5905 1066 1412

Thank you for your response. It's good to know that it's worked for you. Kindly feel free to get back to me if you need any further assistance.

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing