We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Flex theme - I want to remove the name of the collections

Solved

Flex theme - I want to remove the name of the collections

Konstantinoc
Tourist
13 0 2

Hello,  

 

im trying to remove the name of the collections from showing under the banner. It is already in the banner so having it displayed twice ,isn’t very nice. Any suggestion? Cause I don’t see any option for that. 

IMG_0255.jpeg



Thank you

konstantinos

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10211 2427 3079

This is an accepted solution.

Hi @Konstantinoc 

Check this one. 

  • 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:

 

.collection__title.title {
    display: none !important;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1700074010564.png

     

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.

View solution in original post

Replies 11 (11)

Natasha-Saed
Shopify Partner
467 51 87

Hi, 

 

Please share your store URL to give you the solution for it.

If my solution helped you don't forget to accept it to help others.
===================================================================
And if you really like my support share a cup of coffee with me paypal.me/freemindsint
Konstantinoc
Tourist
13 0 2
It is milloobags.com
Konstantinoc
Tourist
13 0 2

It is www.milloobags.com   

thank you 

Natasha-Saed
Shopify Partner
467 51 87

Do you want it to be like this ? or also without the filter ?

NatashaSaed_0-1700073673870.png

 

If my solution helped you don't forget to accept it to help others.
===================================================================
And if you really like my support share a cup of coffee with me paypal.me/freemindsint
Konstantinoc
Tourist
13 0 2

I want the filters there

Spac-es
Shopify Partner
408 119 155

https://community.shopify.com/c/shopify-design/flex-theme-i-want-to-remove-the-name-of-the-collectio...

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!

Made4uo-Ribe
Shopify Partner
10211 2427 3079

This is an accepted solution.

Hi @Konstantinoc 

Check this one. 

  • 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:

 

.collection__title.title {
    display: none !important;
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1700074010564.png

     

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.
Konstantinoc
Tourist
13 0 2

Great! Solved!

 

Thank you !

buttercups
Visitor
1 0 0

It doesn't work for me, can you please help?

Made4uo-Ribe
Shopify Partner
10211 2427 3079

Hi @buttercups 

Would you mind to share your store URL? 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.

Spac-es
Shopify Partner
408 119 155

Add this code in your theme.liquid:

  <script>
    document.addEventListener("DOMContentLoaded", function() {
      var elementToHide = document.querySelector('.two-fifths.medium-down--one-whole.column.has-no-side-gutter.hide-when-banner-enabled');
      if (elementToHide) {
        elementToHide.style.display = 'none';
      }
    });
  </script>

 Captura de pantalla 2023-11-15 194916.png

 If you want to show it again in the future, simply delete the code.

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!