Supported Versions
The details shared here apply to the most recent version of Parallax. To keep your theme up to date, check out this helpful document.
If you would like to completely disable the cart drawer, from appearing when the cart button is clicked, you can do so by following these steps:
Step 1: Head into your Shopify Admin > Online Store > Themes > Actions > Edit Code.
Step 2: Under the Sections folder, locate the header.liquid section file.
Step 3: Around line 67 you'll find the following:
<a href="#cart" class="icon-cart cart-button right"><span>{{ cart.item_count }}</span></a>
Which can be updated to:
<a href="/cart" class="icon-cart cart-button right"><span>{{ cart.item_count }}</span></a>
Step 4: Then around 316 - 317 you'll find the following:
<a href="#cart" class="icon-cart cart-button"><span>{{ cart.item_count }}</span></a>
<a href="/cart" class="icon-cart cart-button no-js-only"><span>{{ cart.item_count }}</span></a>
Which can be updated to:
<a href="/cart" class="icon-cart cart-button"><span>{{ cart.item_count }}</span></a>
<a href="/cart" class="icon-cart cart-button no-js-only"><span>{{ cart.item_count }}</span></a>
The cart button will now link directly to the cart page instead of opening the cart drawer.