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

Re: Hide page title in Pipeline

How can I conceal a page title in Pipeline theme?

andreapascual
Explorer
86 0 16

How do I hide a page title in Pipeline them?

https://pascualstudio.com/pages/join-us

I would like to remove "Join Us" at the top.

Thanks.

Replies 10 (10)

GemPages
Shopify Partner
5625 1262 1254

Hello @andreapascual 

 

It's GemPages support team and glad to support you today.

You can follow these steps:

1. Go to Online Store -> Theme -> Edit code
2. Open your theme.liquid theme file
3. Paste below code before </body> :

 

<style>
     body.template-page .page__template .standard__heading{
         display: none;
      }
</style>

 

If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
andreapascual
Explorer
86 0 16

Hello, does that remove it for all the pages? I only want to remove it for that one specific page.

PageFly-Victor
Shopify Partner
7865 1786 3116

Hi @andreapascual 

This is Victor from PageFly - Landing Page Builder App

 

You can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.css.

Step 3: Paste the below code at bottom of the file -> Save

 

h2.h2.standard__heading.heading-size-8.aos-init.aos-animate {

    display: none;

}

 

Hope that my solution works for you.

Best regards,

Victor | PageFly

DelightCart
Shopify Partner
1264 83 157

@andreapascual  Go to assets/theme.css and paste below css at bottom of file.

 

.aos-initialized [data-aos][data-aos][data-aos-order="2"]

{
display: none !important;
}
Delight Cart - It's time to turn your visitors into loyal shoppers! 

Delight Loyalty - Increase repeat sales quickly and build lifelong customers loyalty.
GemPages
Shopify Partner
5625 1262 1254

You can try to change the above code with my code below:

 

{%  if page.handle contains 'join-us' %}
   <style>
      body.template-page .page__template .standard__heading {
         display: none;
      }
    </style>
{%  endif %}

 

If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
andreapascual
Explorer
86 0 16

Hi @GemPages - I tried it but it didn't work.

PageFly-Victor
Shopify Partner
7865 1786 3116

You can try again with this code:

Follow this:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: paste bellow code in tag </body> -> save.

PageFlyVictor_0-1670840615353.png

 

<style>

.text__standard.text-left h2.h2.standard__heading.heading-size-8.aos-init.aos-animate {
display: none !important;
}

</style>

 

Hope that my solution works for you.

Best regards,

PageFly

andreapascual
Explorer
86 0 16

Hi @PageFly-Victor  - How do I remove it from just ONE page only?

PageFly-Victor
Shopify Partner
7865 1786 3116

@andreapascual 

Try again with this code:


{% if handle contains ‘join-us’ %}
       <style>
           .text__standard.text-left h2.h2.standard__heading.heading-size-8.aos-init.aos-animate {
               display: none !important;
            }
       </style>

{% endif %}

andreapascual
Explorer
86 0 16

Hi @PageFly-Victor - It didn't work.