I am using the Dawn theme and the product name is not appearing on any collection page, only the price. When I click into a specific product the product name appears correctly. Thanks in advance.
Could you share your store URL?
@MitchPeterson83 - can you please share the collection page link?
https://ausmancave.com.au/collections/collection
Dev PW is: ausmancaveshop
https://ausmancave.com.au/collections/collection
Dev PW is: ausmancaveshop
Go to your Online store > Theme > Edit code > Assets > open base.css file, check at the bottom of your file and remove those line of code to solve the issue
.card__heading .full-unstyled-link {
width: 0 !important;
height: 0 !important;
font-size: 0px !important;
color: white !important;
}
@MitchPeterson83 - add this css to the very end of your base.css file and check, adjust the numbers as per your need
.card__heading .full-unstyled-link {
width: initial !important; height: auto !important; font-size: 12px!important; color: #000!important; margin-top: 20px;
}
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and find this css line number:-3326 and remove:
.card__heading .full-unstyled-link {
width: 0!important;
height: 0!important;
font-size: 16px!important;
color: #fff!important;
}
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.card__heading .full-unstyled-link {
font-size: 15px;
padding: 5px;
}
Thank you, but this only partially resolved the issue. This has restored the product name on the collection page but it has also restored the collection name on the collections page. I hoping hoping to get to a stage where:
-
The product name and product price appear under a product image when on a specific collection.
-
The collection name does not appear below the collection image when on the Collections page.
Here is the current code at the bottom of my base.css file:
:root {
–easter-egg: none;
–sparkle: url(‘./sparkle.gif’);
}
}
.card__heading .full-unstyled-link {
width: 0 !important;
height: 0 !important;
font-size: 0px !important;
color: white !important;
}
.card–standard > .card__content .card__information {
padding: 0 !important;
}
The ‘Collections’ Page is currently appearing correctly but when you go into a collection like All Products, the product name does not appear under the product image, only the product price.