Adding Extra Buttons On Checkout Page

This feature allows you to customize your checkout 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


1. Admin Panel > Themes > Edit source 


2. templates > templates/cart.liquid > Look for {{ cart.note }}  

*Usually appear at row 186-187


3. Paste code below after the row {% endif %}

 <div class="grid__item"  style="margin-bottom:30px;">

<p>

<span>THE TITLE OF THE BUTTON 1</span>


<a href="LINK OF THE PAGE" target="_blank" class="btn"  style="float:right;">SAME AS ABOVE - THE TITLE OF THE BUTTON</a></p>


<p> <span>THE TITLE OF THE BUTTON 2</span>


<a href="LINK OF THE PAGE" target="_blank" class="btn"  style="float:right;">SAME AS ABOVE - THE TITLE OF THE BUTTON 2</a></p>


</div>

       

Tips:

  • If you only need one button, you can remove the second repeated code  

  • If you need another button, you can paste code below before </div>

<p> <span>THE TITLE OF THE BUTTON 3</span>


<a href="LINK OF THE PAGE" target="_blank" class="btn"  style="float:right;">SAME AS ABOVE - THE TITLE OF THE BUTTON 3</a></p>


4. Save



Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.