How do I open the quote cart from anywhere?
There are two options that you can use to open the quote cart from any page.
Go to Online Store > Themes and click Customize on your theme:
Next, click the App Embeds icon:
Enable the Sticky Quote Cart Button and define your settings:
If you want to show the quote cart you can use the following code snippet to open the modal showing the quote cart contents:
It's also possible to show the amount of items in the quote cart:
You can modify `data-quotify-cart-count="(:count)"`to change the way the number should be shown. This example, will look like "Open Quote Cart (3)". Let's say you want to wrap the number in brackets, in that case it will be data-quotify-cart-count="[:count]" which will result in "Open Quote Cart [3]".
Sticky Quote Cart Button
Go to Online Store > Themes and click Customize on your theme:
Next, click the App Embeds icon:
Enable the Sticky Quote Cart Button and define your settings:
Use a custom HTML snippet
If you want to show the quote cart you can use the following code snippet to open the modal showing the quote cart contents:
<button data-quotify-cart>Open Quote Cart</button>
It's also possible to show the amount of items in the quote cart:
<button class="quotify-sticky-cart-btn" data-quotify-cart>
Open Quote Cart
<span class="quotify-quote-cart-btn-has-count" data-quotify-cart-count="(:count)"></span>
</button>
You can modify `data-quotify-cart-count="(:count)"`to change the way the number should be shown. This example, will look like "Open Quote Cart (3)". Let's say you want to wrap the number in brackets, in that case it will be data-quotify-cart-count="[:count]" which will result in "Open Quote Cart [3]".
Updated on: 28/12/2024
Thank you!