Adding extra buttons on shopping cart
This feature allows you to customize your shopping cart page by adding extra buttons as needed that might be useful to the nature of your business.
You can also add call-to-action buttons like the screenshot above to encourage people to be a member of your store or perhaps to purchase more products.
Benefits:
- Call to action buttons to encourage your users to sign up as member
- Serves as a friendly reminder upon check out
- Increase sales
⚠️ Kindly take note : - Above all code editing, specialized for new theme template (theme that come after theme CANDY)
- We do not allow to change or edit the code for the checkout page (which include shipping & payment method) due to security reasons
Step 1 : EasyStore Admin > Channels > Online Store > Theme > Edit source
Step 2 : Select cart-template.liquid > Look for {{<div class="cart__footer">}
Step 3 : Paste code above before the row {<div class="cart__footer">}
<div class="cart__blocks text-right">
<div>
<a href="LINK OF THE PAGE" target="_blank" class="btn">THE TITLE OF THE BUTTON</a>
</div>
<div>
<a href="LINK OF THE PAGE" target="_blank" class="btn">THE TITLE OF THE BUTTON 2</a>
</div>
</div>
If you need another button, you can duplicate the code
` <div><a href="LINK OF THE PAGE" target="_blank" class="btn">THE TITLE OF THE BUTTON 2</a></div> `
Step 4 : Save
Before :
After :
Updated on: 23/10/2023
Thank you!