Using AJAX Themes with Product Options

Modified on Fri, 01 Sep 2023 at 03:33 AM

Overview

Shopify themes that use AJAX for don't function correctly with Product Options 2.0.

With AJAX, the cart updates dynamically without reloading the page, and when this happens, the changes that Product Options 2.0 has made to the cart are erased. To correct this, it is necessary to trigger Options 2.0 to redo its changes after the AJAX cart reload has completed.

Alert

This article only applies to Product Options 2.0, as it requires technical knowledge and prior experience with JavaScript and AJAX. If you are not comfortable with this, please contact our Merchant Success team for assistance.


Setup

  1. From the Shopify admin, select Online Store, then Actions > Edit code.
  2. Under Assets, select theme.js.

    Note: If this file doesn’t exist, your main JavaScript file may be named: app.js, ajaxify.js, the same name as your theme, or something similar.

    Select theme.js

  3. Look for the function that draws the cart, like refreshCart or buildCart.

    Locate function

  4. Add this code immediately after the opening of the function:

    if(window.BOLD && BOLD.common && BOLD.common.cartDoctor && typeof BOLD.common.cartDoctor.fix === 'function'){
        cart = BOLD.common.cartDoctor.fix(cart);
    }

    It should look like this:

    Add the code

  5. Scroll down to the end of the function.

    Scroll down to the end of the function

  6. Add this code right at end of the function before the close:

    if(window.BOLD && BOLD.common && BOLD.common.eventEmitter && typeof BOLD.common.eventEmitter.emit === 'function'){
      BOLD.common.eventEmitter.emit('BOLD_COMMON_cart_loaded', cart);
    }

    It should look like this:

    Add the code

  7. Select Save.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select atleast one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article