> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.easystore.co/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# 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](https://admin.easystore.co) > Channels > Online Store > Theme > Edit source 

**Step 2 :** Select **cart-template.liquid >** Look for **{{<div class="cart__footer">}**    

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/be-16_xp2lt7.png)

**Step 3 :** Paste code above before the row {<div class="cart__footer">}

```html
<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>
```

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/be-57_q16tp2.png)

| **💡 Tips:** If you only need one button, you can remove the second repeated code  

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/be-59_1iooik8.png)

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 :

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/be-19_wqrdnl.png)

### After :

![](https://storage.crisp.chat/users/helpdesk/website/b34797d9594d3000/be-60_ot6b3e.png)