How can I conceal a page title in Pipeline theme?

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.

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 :

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

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

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

@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;
}

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

{%  if page.handle contains 'join-us' %}
   
{%  endif %}

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

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

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 → save.

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

Hope that my solution works for you.

Best regards,

PageFly

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

@andreapascual

Try again with this code:

{% if handle contains ‘join-us’ %}

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

{% endif %}

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