These are the steps I went through to set up an SSL cert.
Prior to purchasing a cert, you need to generate a private key, and a CSR file (Certificate Signing Request). You'll be asked for the content of the CSR file
<script> | |
// (c) Copyright 2011 Caroline Schnapp. All Rights Reserved. Contact: [email protected] | |
// See http://wiki.shopify.com/Linked_Options | |
var Shopify = Shopify || {}; | |
Shopify.optionsMap = {}; | |
Shopify.updateOptionsInSelector = function(selectorIndex) { | |
// in class VariantSelects | |
// in onVariantChange() method add the call the following method | |
this.updateBundleVariant(); | |
// right after onVariantChange() define the method | |
updateBundleVariant() { | |
// remove old line item properties from DOM | |
[ ...document.querySelectorAll( '.bundles_lineItemProperty' ) ].forEach( lineItemProperty => { | |
lineItemProperty.parentNode.removeChild( lineItemProperty ); | |
} ); |