How can I remove collection titles from my product page?

Solved

How can I remove collection titles from my product page?

ZIENKID
Tourist
4 0 1

Hi Guys 
I'm trying to remove the collection name (in this case In Stock) from my product collection page
I've tried adding the following code to from the base.css file and didn't work 

 

.page-title {
    display:none !important
}
 
Is anyone able to shed any light? 

Using Dawn Theme 
 
Screen Shot 2024-02-29 at 10.12.53 am.png
 
Accepted Solution (1)
suyash1
Shopify Partner
10837 1339 1716

This is an accepted solution.

@ZIENKID - add this code to the end of base.css file and check

 

.collection-hero__title {display: none; visibility: hidden;}

  

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

View solution in original post

Replies 8 (8)

suyash1
Shopify Partner
10837 1339 1716

@ZIENKID - can you please share this page link?

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
ZIENKID
Tourist
4 0 1

it's luxebywest.com.au 

 

the store isn't operational yet but you can get in with code LUXE2024

 

suyash1
Shopify Partner
10837 1339 1716

This is an accepted solution.

@ZIENKID - add this code to the end of base.css file and check

 

.collection-hero__title {display: none; visibility: hidden;}

  

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
ZIENKID
Tourist
4 0 1

amazing thank you ... total rockstar !!!!!!! 

 

suyash1
Shopify Partner
10837 1339 1716

@ZIENKID - welcome 🙂

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

PageFly-Oliver
Shopify Partner
878 190 187

Hi @ZIENKID ,

 

You can try this code by following these steps:

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

Step 2: Search file theme.liquid

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

 

{% if template contains "collection" %}
<style>
.collection-title{
display:none !important
}
</style>
{% endif %}

 

 

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

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


PageFly - #1 Page Builder for Shopify merchants.


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

ZIENKID
Tourist
4 0 1

thank you - all fixed with the previous fix but thank you for your help 🙂

 

projectsbydel
Excursionist
23 1 3

Same problem but where can Base.CSS be found when going to 'EDIT CODE'?