Skip to content

Instantly share code, notes, and snippets.

@steve-ross
Last active April 6, 2022 13:54
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steve-ross/d6f0b82a835fa5de9c10c71f8c71ba38 to your computer and use it in GitHub Desktop.
Save steve-ross/d6f0b82a835fa5de9c10c71f8c71ba38 to your computer and use it in GitHub Desktop.
Script for patching/changing the BigCommerce Checkout page
var toPatch = [
{ sel: '[name="billingSameAsShipping"]' , click: true },
{ sel: '[name="redeemableCode"]' , prop: 'placeholder', val: 'Enter Promo Code' },
{ sel: '.ReactModalPortal [name="redeemableCode"]' , prop: 'placeholder', val: 'Enter Promo Code' },
];
var matchedSubscriptionItems = [];
function patchIt(patches) {
var afterElementExists = function(selector, cb) {
function findit() {
// look for our dom element
var el = document.querySelectorAll(selector);
if (!el.length) {
// if the element doesn't exist recursively call requestAnimationFrame
// until it does.
window.requestAnimationFrame(findit);
} else {
// call back, returning the element
return cb(el);
}
}
// kick off the recusive function
return findit(selector);
}
// loop over all the patches
Array.prototype.forEach.call(patches, function(patch, i){
// call our function that looks for the elements
afterElementExists(patch.sel, function(elements, i){
// once they exist do the patch
Array.prototype.forEach.call(elements, function(el, i){
if(patch.repl) el.innerHTML = el.innerHTML.replace(patch.repl, patch.with);
if(patch.prop) el[patch.prop] = patch.val;
if(patch.style) el.style[patch.style] = patch.val;
if(patch.click) el.click();
});
});
});
};
// patch on load
patchIt(toPatch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment