Uniqueleaf20 Posted February 22, 2020 Share Posted February 22, 2020 I am currently trying to remove the add to cart button as well as the quantity option on my items listed on my website.I’ve done a lot of research looking for the proper coding to hide or remove these and I’m having trouble. Has anyone had experience with this? Link to comment
tuanphan Posted February 23, 2020 Share Posted February 23, 2020 Add to Home > Design > Custom CSS if the code doesn't work, can you share link to your site? .product-quantity-input { display: none !important; } .sqs-add-to-cart-button-wrapper { display: none; } 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
Uniqueleaf20 Posted February 23, 2020 Author Share Posted February 23, 2020 www.uniqueleafcbd.com is the site. Each page has an add-to-cart button as well as a quantity field. Because of the nature of our business (CBD Hemp) I added a button that say's "ORDER NOW" which will redirect the user to a page where they can check off what they want to purchase and it will be emailed to us directly. I did this because finding an payment processor for CBD is near impossible and once you do, the industry and laws change, and once again, crap out of luck. So, I am invoicing buyers from Square (it's unable to be linked to the website directly) for the time being and its' easier to have the checkbox page where they can email their orders... thus, the add-to-cart button being absolutely useless for the sake of utilizing square spaces set up. Make sense?! lol Thanks for the help.. and am I placing code under: settings > advanced> code injection > paste? Link to comment
tuanphan Posted February 24, 2020 Share Posted February 24, 2020 14 hours ago, Uniqueleaf20 said: www.uniqueleafcbd.com is the site. Each page has an add-to-cart button as well as a quantity field. Because of the nature of our business (CBD Hemp) I added a button that say's "ORDER NOW" which will redirect the user to a page where they can check off what they want to purchase and it will be emailed to us directly. I did this because finding an payment processor for CBD is near impossible and once you do, the industry and laws change, and once again, crap out of luck. So, I am invoicing buyers from Square (it's unable to be linked to the website directly) for the time being and its' easier to have the checkbox page where they can email their orders... thus, the add-to-cart button being absolutely useless for the sake of utilizing square spaces set up. Make sense?! lol Thanks for the help.. and am I placing code under: settings > advanced> code injection > paste? To hide on Entire site, add to Design > Custom CSS .product-quantity-input { display: none !important; } .sqs-add-to-cart-button-wrapper { display: none; } To hide on One Page, add to Page Settings > Advanced > Header <style> .product-quantity-input { display: none !important; } .sqs-add-to-cart-button-wrapper { display: none; } </style> 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
Uniqueleaf20 Posted February 24, 2020 Author Share Posted February 24, 2020 That is working for the quantity but the "add-to-cart" button still remains. I am pasting it into Design >Custom CSS Link to comment
tuanphan Posted February 25, 2020 Share Posted February 25, 2020 14 hours ago, Uniqueleaf20 said: That is working for the quantity but the "add-to-cart" button still remains. I am pasting it into Design >Custom CSS try display: none !important; 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
aaronschinke Posted April 9, 2020 Share Posted April 9, 2020 On 2/25/2020 at 1:55 AM, tuanphan said: display: none !important; THIS! Thanks for the help. It made all the difference. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.