GastonDuflos Posted March 11, 2023 Share Posted March 11, 2023 Hi guys! 1) I want to have the SOLD OUT, LIMITED AVAILABILITY and NEW labels as per the attached reference. How can I do this? I need it for both, desktop and phone. 2) I want to add the word AUD next to all my prices in shop page and product page. Thank you so much! Link to comment
tuanphan Posted March 12, 2023 Share Posted March 12, 2023 Hi, What is shop page? We can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
GastonDuflos Posted March 25, 2023 Author Share Posted March 25, 2023 Hi @tuanphan my shop page is: www.gastonduflos.com/shop Link to comment
tuanphan Posted March 29, 2023 Share Posted March 29, 2023 #1. First, you need to create some tags: Limited Availability, New and assign products Next, we can target products belong these tags to add code easier #2. Add to Design > Custom CSS /* Add AUD */ .product-price:after { content: " AUD"; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
GastonDuflos Posted May 6, 2023 Author Share Posted May 6, 2023 HI @tuanphan thank you very much, that works perfect for the AUD. I've created the TAGS: SOLD OUT, NEW and LIMITED AVAILABILITY and I've assigned them to some of the products. How should I proceed? Thank you so much,. Link to comment
tuanphan Posted April 25 Share Posted April 25 On 5/6/2023 at 9:38 AM, GastonDuflos said: HI @tuanphan thank you very much, that works perfect for the AUD. I've created the TAGS: SOLD OUT, NEW and LIMITED AVAILABILITY and I've assigned them to some of the products. How should I proceed? Thank you so much,. You can use this code to Website > Website Tools > Custom CSS div.tag-new figure.grid-image:after { content: "NEW"; display: block; width: 100%; background-color: #f1f; color: #fff; padding: 5px; line-height: 20px; text-align: center; } div.tag-sold-out figure.grid-image:after { content: "SOLD OUT"; display: block; width: 100%; background-color: green; color: #fff; padding: 5px; line-height: 20px; text-align: center; } div.tag-limited-availability figure.grid-image:after { content: "LIMITED AVAILABILITY"; display: block; width: 100%; background-color: black; color: #fff; padding: 5px; line-height: 20px; text-align: center; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment