Add a View Cart / Continue shopping option on Slide Cart.
Our app offers the option to add a Continue shopping link below the checkout button in all plans. When clicking the link, the cart will be closed so your customers can continue navigating the current page they are on.
You can also add a Continue shopping button and/or a View Cart button or link using our Custom HTML fields (Only available in our premium subscriptions)
To enable the Continue Shopping link, go to the app's dashboard-> Appearance -> Functionality Settings and enable the checkbox Continue shopping link.
Show a Continue Shopping button.
If you prefer the Continue Shopping option to look like a button, you will need to do the following:
- Disable the "Continue Shopping link" from the settings.
- Add the snippet below to the Custom HTML field "Below checkout button":
<a class="button full" onclick="window.SLIDECART_CLOSE()">Continue Shopping</a>
Result:
The button color will be inherited from the Accent/button color selected in the app's dashboard.
Adding a View Cart button or link.
A View Cart option can be added to the cart using our Custom HTML fields (Only available in our premium subscriptions) to redirect customers to the standard cart page of Shopify.
To do so, on Slide Cart's dashboard, go to -> Features -> Custom HTML and look for the Below checkout button field:
You can add the code below depending on whether you want a button or a link.
For a button, add the following snippet:
<a href="/cart" style="margin-top: 10px;" class="button full">View Cart</a> |
Result:
The button color will be inherited from the Accent/button color selected in the app's dashboard.
For a link, add the following snippet:
<a href="/cart" style="text-align: center; display: block; color: rgba(0,0,0,0.6); font-size: 14px; margin-top: 10px;">View Cart</a> |
Outcome:
Give it a try, and let us know how it goes for you. We'll be here to answer any of your questions.