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

How to remove titles from specific pages in Ira theme?

Solved

How to remove titles from specific pages in Ira theme?

PoW8
Explorer
60 1 11

IMG_3916.jpeg

 Hey, anyone have a code to remove titles from pages created in “Pages” only. The closest thing I remember finding was one that removed all titles including from the policy pages which isn’t ideal imo. Also that code was for Dawn and the other free themes, I’ve since switched to Ira.

Accepted Solution (1)

PageFly-Amelia
Shopify Partner
626 165 237

This is an accepted solution.

Hello @PoW8 

This is Amelia at PageFly - Shopify Advanced Page Builder app.

 

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid

Step 3: Add code above the tag </head>

<style>
.section-header, .page__header  {
   display: none;
}
</style>

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 10 (10)

Made4uo-Ribe
Shopify Partner
9085 2172 2681

Hi @PoW8 

Would you mind to share your store URL? please the updated one. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
PoW8
Explorer
60 1 11

printsofwhatever.com

pw:teunto

Made4uo-Ribe
Shopify Partner
9085 2172 2681

Do you like to remove the page title on the About page right?

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

section#shopify-section-template--22339296624916__main h1 {
    display: none;
}

 

And Save. 

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
PoW8
Explorer
60 1 11

That didn’t affect the titles. My Assets folder uses theme.css if it matters.

Made4uo-Ribe
Shopify Partner
9085 2172 2681

Sorry, i didnt get it. You mention Pages, aside from about pages what more pages title do you like to remove. We can remove them by the section id. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
PoW8
Explorer
60 1 11

The About page and Contact page but it didn’t do anything to the About page. Which is actually all I would need because, I found a post from 2023 that removes the title from my Contact page.

websensepro
Shopify Partner
1288 145 166

Hello @PoW8 ,

Go to Shopify admin > Edit code >  Search base.css file

Now add this code to the base.css file at the bottom.

.page-title {
 
    display:none !important
 
}

Save changes.

Need a Shopify developer?
Hire us at WebSensePro
For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
Subscribe to our youtube channel or buy us a Cofee here

Free Shopify Beginner Tutorial
PoW8
Explorer
60 1 11

Didn’t work when I placed it at the bottom of my theme.css as that’s the folder Ira theme uses.

PageFly-Amelia
Shopify Partner
626 165 237

This is an accepted solution.

Hello @PoW8 

This is Amelia at PageFly - Shopify Advanced Page Builder app.

 

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file theme.liquid

Step 3: Add code above the tag </head>

<style>
.section-header, .page__header  {
   display: none;
}
</style>

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


➜ Optimize your Shopify store with PageFly Page Builder (Free plan available) 
➜ Weekly updated Shopify tutorials on YouTube 


All features are available from Free plan. Live Chat Support is available 24/7.

PoW8
Explorer
60 1 11

Yeah, that’s precisely it. Removes all the titles from the pages created in “Pages” and leaves the policy titles alone. 

Thank you, Amelia and of course to everyone who spent their time trying to help.