torgrim Posted April 28, 2020 Share Posted April 28, 2020 Hi! I'm trying to change the "Purchase" (Purchase botton) & "Quantity" text under products in the store. It seems like it is set this way and that it only allows english, germane, spanish and french. I would like to change to another language, by changing it manually, since the language is not available on Squarespace. Thank you! Link to comment
tuanphan Posted April 30, 2020 Share Posted April 30, 2020 Yes. You can. Can you share link to product page? torgrim 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
torgrim Posted April 30, 2020 Author Share Posted April 30, 2020 Actually figured out the "Purchase" button. Under "edit service product" and "Options", select the button "Use custom Add button label". Still have not figured out how to change the text/language on the "quantity" and "product variants". Thank you again so much to @tuanphan for very kind help! Link to comment
torgrim Posted May 1, 2020 Author Share Posted May 1, 2020 Home - Design - Custom CSS: .quantity-label { visibility: hidden; } .quantity-label:before { visibility: visible; content: "Quantity"; } Change the word "Quantity" to whatever language you want. Thank you so much @tuanphan Link to comment
Amsterixe Posted November 12, 2020 Share Posted November 12, 2020 Thank you for your code, It works for me. I needed to put 'Quantité' (french word) instead of 'Quantity'. But I still have a small small question about that code line: the word 'Quantité' is not centered even when I put the setting to center it. It appears 4 spaces to the left, any idea how to fix this detail? Link to comment
tuanphan Posted November 12, 2020 Share Posted November 12, 2020 5 hours ago, Amsterixe said: Thank you for your code, It works for me. I needed to put 'Quantité' (french word) instead of 'Quantity'. But I still have a small small question about that code line: the word 'Quantité' is not centered even when I put the setting to center it. It appears 4 spaces to the left, any idea how to fix this detail? Can you share link to product in screenshot? We can check easier. 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
Amsterixe Posted February 9, 2021 Share Posted February 9, 2021 https://cforc.quebec/inscriptions Link to comment
creedon Posted February 9, 2021 Share Posted February 9, 2021 (edited) @Amsterixe Replace the .quantity-label:before rule-set with the following. .quantity-label { visibility : hidden; } .quantity-label:before { content : 'Quantité:'; display : block; text-align : center; visibility : visible; } Let us know how it goes. Edited February 9, 2021 by creedon Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Amsterixe Posted February 9, 2021 Share Posted February 9, 2021 Wow! Thanks a buch! 😀 Link to comment
Amsterixe Posted February 9, 2021 Share Posted February 9, 2021 Actually, now it puts Quantity in both languages, is there a way to just put the word in french? here is my code .quantity-label:before { content: 'Quantité'; display : block; text-align: center; visibility: visible; } #cart .CartTable-itemPrice-XgjsO .CartTable-itemLabel-3zzV1 span:after { content: ' | Prix'; } #cart .CartTable-itemQuantity-225eT .CartTable-itemLabel-3zzV1:before { content: 'Quantité'; } #cart .CartTable-itemQuantity-225eT .CartTable-itemLabel-3zzV1 span { display: none; } #cart .CartTable-subtotalLabel-3qWE9 span:after { content: ' | Sous-total'; } #cart .checkout-button:after { content: ' | Paiement'; } Link to comment
creedon Posted February 9, 2021 Share Posted February 9, 2021 @Amsterixe It appears you removed the rule-set right before the code I suggested be replaced. I have added it back in my code post above. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Amsterixe Posted February 11, 2021 Share Posted February 11, 2021 Yes, It works! thank you very very much! creedon 1 Link to comment
Ten17 Posted May 29, 2022 Share Posted May 29, 2022 On 2/8/2021 at 11:50 PM, creedon said: @Amsterixe Replace the .quantity-label:before rule-set with the following. .quantity-label { visibility : hidden; } .quantity-label:before { content : 'Quantité:'; display : block; text-align : center; visibility : visible; } It it possible to use a .tag- as a filter to display different "content" based on product item tag? I have a customer with some products in her shop that are 1. fabric by the yard .tag-yards content: 'quantity in 1/2 yards' 2. fabric bundles .tag-bundles content: 'Fat Quarter Bundles' Squarespace Brine 7.0 Rally Template Link to comment
creedon Posted May 30, 2022 Share Posted May 30, 2022 On 5/29/2022 at 11:48 AM, Ten17 said: It it possible to use a .tag- as a filter to display different "content" based on product item tag? Please post the URL for a page on your site where we can see your issue. If your site is not public please set up a site-wide password, if you've not already done so. Post the password here. Adding a site-wide password does not allow anyone to alter your site. It only allows those with the password to see your site. Please read the documentation at the link provided to understand how it works. Please read the documentation at the link provided on how to share a link to your site to understand how it works. A link to the backend of the your site won’t work for us, i.e. a url that contains /config/. We can then take a look at your issue. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Ten17 Posted June 10, 2022 Share Posted June 10, 2022 @creedon I came up with a simple CSS solution to display different labels by currency and quantity for different products based on custom tags. URL: https://www.dogwoodtrailquiltco.com/store/p2pt7x8ybk93pnn-df7zl-ta49w-awp5k-sb56g-49xtx-d9yeg-hna9y The customer needed this based on different types of products in she sells to ensure the buyer understands product price per quantity. Critical when entering yard goods. CSS Example: // -- Custom Product Price Label FQB-- / .tag-bundle .sqs-money-native:after { content: ' per bundle'; } .sqs-money-native:before { content: '$' !important; } body.view-item .product-price { overflow: hidden; text-indent: -12px; } // -- Custom Product Price Label yards -- / // -- Change Quantity Label to show Bundles -- / .tag-bundle .quantity-label { visibility: hidden; } .tag-bundle .quantity-label:before { visibility: visible; content: "Qty in bundles"; display: block; } // -- END Change Quantity Label to show bundles -- / THANK YOU!!! creedon 1 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