Warning!
This article requires technical knowledge and prior experience with JavaScript and Ajax. If you are not comfortable with this, Request an Ajax Install.
Note: If you have completed the Ajax Themes in Product Options 2.0 install on your current theme, you don't need to complete these steps.
Shopify themes that use Ajax for certain features don't automatically function correctly with Customer Specific Pricing because they update the cart dynamically without reloading the page. When this happens the changes that Customer Specific Pricinghas made to the cart are erased. To correct this, it is necessary to trigger Customer Specific Pricing to redo its changes after the Ajax cart reload has completed. Follow these instructions to do this:
- From "Shopify Admin", select Online Store.
- Select Actions.
- Select Edit code.
-
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.
- Look for the function that draws the cart, like refreshCart or buildCart.
-
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:
- Scroll down to the end of the function.
-
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:
- Select Save.
That's it!
Next Steps:
- Enable Customer Accounts (links to Shopify website)
- Create a Customer Pricing Tag
- Create Product Groups