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
Hi all,
I am using the Craft theme, and will like to use SKU section to show my books ISBN number.
But the problem is that while the number is showing, there is no title in front of it showing that it is ISBN number.
Is is possible to add a title in front showing "ISBN: " (with bold) when the SKU is not blank, but wont show anything if the SKU is blank?
Update: here is my website link
https://mzbooks.shop/products/%E9%9B%B6%E7%9A%84%E4%BB%A3%E5%83%B9-%E4%B8%AD%E5%9C%8B%E5%9C%A8%E6%96...
Thank you.
Could you share the link to your product page?
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Sorry I added the link edi, thank you.
Please add this code to Custom CSS in Online STore > THemes > Customize > Theme settings
.product .product__sku:before {
content: 'ISBN: ';
font-weight: 700;
}
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
@Monsoonzone please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css
.product__sku:before {
content: "ISBN : ";
font-weight: bold;
}