Shopify themes, liquid, logos, and UX
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
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.
Thank you
konstantinos
Solved! Go to the solution
This is an accepted solution.
Check this one.
.collection__title.title {
display: none !important;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Hi,
Please share your store URL to give you the solution for it.
Do you want it to be like this ? or also without the filter ?
I want the filters there
This is an accepted solution.
Check this one.
.collection__title.title {
display: none !important;
}
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Great! Solved!
Thank you !
It doesn't work for me, can you please help?
Hi @buttercups
Would you mind to share your store URL? Thanks!
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>
If you want to show it again in the future, simply delete the code.