Amanduarte
-
Posts
3 -
Joined
-
Last visited
Content Type
Forums
Gallery
Blogs
Events
Store
Downloads
Profiles
Posts posted by Amanduarte
-
-
Quote
You can change the wording of the Add to Cart button for specific products by editing those products. Whilst editing the product, scroll down to the Checkout section and look for the Customize Button option.
Ok, so.. I'm attaching 2 screenshots here so we can better understand the situation.. There's the Shop Page (which shows all products, and each have its price + name + button), and then when we click on one of the products we go to the Checkout Page (where there's a description and additional information of the product)...
If I proceed to do the way you said, the only button changing is in the Checkout Page (the button says (Choose Flavour), so it doesn't help me, because I need it in the Shop Page instead... Makes sense? Sorry if I'm not explaining better...
Now, squarespace doesn't add a button on the shop page at all.. I've added it through coding (that's why I included the footer injection here).. So what I need in fact is someone to help me with the coding bit..
Thank you again for taking the time to answer!
-
Site URL: https://www.teamshakeitup.com.au/shop
Hey all!
I need to change the text of 2 specific buttons on my shop page, I'll add images here to make it easier to understand:
On the attached screenshot, I need the button label of the Game Changer & We got this packs to say: "Choose Flavour" instead of "Add to Cart". All the other products should remain the same.
Also, this is what's on my Code Injection Footer (if this helps at all):
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <style> .products .grid-item { padding-bottom: 80px; width: 100% !important; } .products .grid-item .sqs-add-to-cart-button { position: absolute; z-index: 9999; bottom: 0; left: 0; right: 0; width: 200px; min-width: 200px; margin: auto; font-family: 'cera-pro-regular'; } .products .grid-item .sqs-add-to-cart-button:hover { font-family: 'cera-pro-black-italic'; } </style> <script> $(".products .grid-item").each(function(e){ $(this).append('<div class="sqs-add-to-cart-button sqs-suppress-edit-mode sqs-editable-button" role="button" tabindex="0" data-product-type="1" data-original-label="Add to Cart"><div class="sqs-add-to-cart-button-inner">Add to Cart</div></div>'); }); $(function() { $(".products .grid-item").each(function(e){ var dataItemId = $(this).attr('data-item-id'); $(this).find('.sqs-add-to-cart-button').attr('data-item-id', dataItemId); }); }); </script>
Any help is appreciated!
Open embedded Mailchimp form in lightbox
in Customize with code
Posted
Site URL: https://www.dogoodlabs.com.au/qantas-copy
Hi team,
Need some help with coding.
I've created a signup embed form in Mailchimp and added it to my website through code block.
I need to adjust the code so it creates a button before the form appears (exactly as the current button on the page "where should we donate").
On the screenshot: white rectangle form to match top button.
Code:
Thank you