> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.app-hive.dev/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).

# How can I clear my regular Shopify cart when a Quote is requested?

If you use the convert cart into a quote request feature you might want to clear the regular Shopify cart once a quote request is submitted. You can add the following code snippet to **Settings > Customization > Custom Javascript** to achieve this:

```
window.addEventListener('quotify:submitted', event => {

    parent.postMessage("clear-shopify-cart", "*");

});

```
