TomasAH Posted September 2, 2019 Share Posted September 2, 2019 When on shoppingcart page there is a button called "Checkout" - I'm looking to change this text.Does anyone know ho to do this with CSS or other code? I managed to add the correct wording via CSS, but would rather replace/remove the orgiinal text. Link to comment
tuanphan Posted September 2, 2019 Share Posted September 2, 2019 @TomasAH you should share site url to check css 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
TomasAH Posted September 2, 2019 Author Share Posted September 2, 2019 @tuanphan Sorry about that - site is: nordoslo.no Link to comment
TomasAH Posted September 2, 2019 Author Share Posted September 2, 2019 @tuanphan Sorry about that - site is: nordoslo.no Link to comment
tuanphan Posted September 2, 2019 Share Posted September 2, 2019 @TomasAH Add to Home > Design > Custom CSS body.cart .checkout-button { visibility: hidden; } body.cart .checkout-button:after { visibility: visible; content: "New Text"; border: 2px solid #2b2f33; padding: 15px 40px; color: #2b2f33; -webkit-transition: 0.1s background-color linear, 0.1s color linear; -moz-transition: 0.1s background-color linear, 0.1s color linear; -o-transition: 0.1s background-color linear, 0.1s color linear; transition: 0.1s background-color linear, 0.1s color linear; } body.cart .checkout-button:hover:after { background: #2b2f33; color: #fff; } 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
TomasAH Posted September 2, 2019 Author Share Posted September 2, 2019 Perfect! That did the trick - thanks! Link to comment
tuanphan Posted September 2, 2019 Share Posted September 2, 2019 @TomasAH change "From" text /* change From text */ #productDetails .product-price { visibility: hidden; } #productDetails .product-price .sqs-money-native { visibility: visible; } #productDetails .product-price:before { content: "ABCXYZ"; visibility: visible; font-size: 15px; color: red; margin-right: -20px; } 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
TomasAH Posted September 2, 2019 Author Share Posted September 2, 2019 @tuanphan Thanks - but this added "from" to every productprice on all productpages - while I am looking to only replace the "from" text on products which have product variants.. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.