niteshifte Posted November 8 Share Posted November 8 How can I remove the 'SALE' from these 2 products on my homepage? I have successfully removed it elsewhere with code but struggling to get it removed here. https://www.peterotoole.ie Thanks very much! Link to comment
Web_Solutions Posted November 8 Share Posted November 8 52 minutes ago, niteshifte said: How can I remove the 'SALE' from these 2 products on my homepage? I have successfully removed it elsewhere with code but struggling to get it removed here. https://www.peterotoole.ie Thanks very much! Add these code on Custom CSS panel in Website > Utilities > Website Tools > Custom CSS. .products .product-mark.sale{ display: none !important; } If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
niteshifte Posted November 8 Author Share Posted November 8 1 hour ago, Web_Solutions said: Add these code on Custom CSS panel in Website > Utilities > Website Tools > Custom CSS. .products .product-mark.sale{ display: none !important; } Thanks so much for the reply! i tried the code above and it doesn't work I'm afraid. Also, it's important that the code only removes the 'SALE' from these 2 items and not other items. Thanks a mill. Link to comment
Web_Solutions Posted November 8 Share Posted November 8 39 minutes ago, niteshifte said: Thanks so much for the reply! i tried the code above and it doesn't work I'm afraid. Also, it's important that the code only removes the 'SALE' from these 2 items and not other items. Thanks a mill. Where did you add it? If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
niteshifte Posted November 8 Author Share Posted November 8 4 minutes ago, Web_Solutions said: Where did you add it? I added it into Custom CSS but if you checked, it wouldn't of been there as I removed it since it wasn't working. I have since re-added it however and should be there if you check. I also noticed there is another product on that page that shouldn't have a sale graphic. See below. If I could remove the Sale from these 3 it would be great! Link to comment
tuanphan Posted November 10 Share Posted November 10 On 11/8/2023 at 10:32 PM, niteshifte said: I added it into Custom CSS but if you checked, it wouldn't of been there as I removed it since it wasn't working. I have since re-added it however and should be there if you check. I also noticed there is another product on that page that shouldn't have a sale graphic. See below. If I could remove the Sale from these 3 it would be great! To remove sale bag from the cork gift bag product, use this CSS code div#block-yui_3_17_2_1_1695637693483_52329 .sale { display: none !important; } niteshifte 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
niteshifte Posted November 10 Author Share Posted November 10 1 hour ago, tuanphan said: To remove sale bag from the cork gift bag product, use this CSS code div#block-yui_3_17_2_1_1695637693483_52329 .sale { display: none !important; } Thanks for that! That works for one of the calendars but not the other calendar or the gift bag? Thanks very much! Link to comment
melody495 Posted November 10 Share Posted November 10 4 hours ago, niteshifte said: Thanks for that! That works for one of the calendars but not the other calendar or the gift bag? Hi, you can install SquareSpace ID Finder for your browser, example below for chrome When you turn it on, you will then be able to find the relevant ID for that specific product you need to remove the sale from You can select multiple of them like this (with the comma) div#block-yui_3_17_2_1_1695637693483_52329, #block-95ef6b014537c903a2f1 .sale { display: none !important; } You can do that for all that you need to remove the sale text from. Try and let me know how it goes. -------- > 👆 <---------- Please quote or @ me when replying, or I won't get a notification Melody 💁♀️ SquareSpace Developer You dream it, I'll make it happen. Contact me: 💻 https://www.melodylee.tech ✉️ my email 📍 UK based. The great thing about the internet, we can work together from anywhere. #neverstoplearning ☕ I like coffee 😊 Link to comment
niteshifte Posted November 10 Author Share Posted November 10 1 hour ago, melody495 said: Hi, you can install SquareSpace ID Finder for your browser, example below for chrome When you turn it on, you will then be able to find the relevant ID for that specific product you need to remove the sale from You can select multiple of them like this (with the comma) div#block-yui_3_17_2_1_1695637693483_52329, #block-95ef6b014537c903a2f1 .sale { display: none !important; } You can do that for all that you need to remove the sale text from. Try and let me know how it goes. That is insanely useful!! wow. just downloaded the extension but my products disappear when I use it. Do you happen to know what's happening here?! Thanks again! Link to comment
Solution Web_Solutions Posted November 10 Solution Share Posted November 10 (edited) 13 minutes ago, niteshifte said: That is insanely useful!! wow. just downloaded the extension but my products disappear when I use it. Do you happen to know what's happening here?! Thanks again! Add code like this. Add the comma after .sale div#block-yui_3_17_2_1_1695637693483_52329 .sale, div#block-95ef6b014537c903a2f1 .sale { display: none !important; } Edited November 10 by Web_Solutions Kobir 1 If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
niteshifte Posted November 10 Author Share Posted November 10 6 minutes ago, Web_Solutions said: Add code like this. Add the comma after .sale div#block-yui_3_17_2_1_1695637693483_52329 .sale, div#block-95ef6b014537c903a2f1 .sale { display: none !important; } Unreal! I learned something new in the process as well. I really appreciate your help! Link to comment
Web_Solutions Posted November 10 Share Posted November 10 Just now, niteshifte said: Unreal! I learned something new in the process as well. I really appreciate your help! Welcome! Ainul and Kobir 2 If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
melody495 Posted November 10 Share Posted November 10 1 hour ago, niteshifte said: That is insanely useful!! wow. just downloaded the extension but my products disappear when I use it. Do you happen to know what's happening here?! Thanks again! You're welcome. I see Web_Solutions resolved it for you 🙂 -------- > 👆 <---------- Please quote or @ me when replying, or I won't get a notification Melody 💁♀️ SquareSpace Developer You dream it, I'll make it happen. Contact me: 💻 https://www.melodylee.tech ✉️ my email 📍 UK based. The great thing about the internet, we can work together from anywhere. #neverstoplearning ☕ I like coffee 😊 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