Skip to content

Instantly share code, notes, and snippets.

@CasperEngl
Created August 31, 2022 12:27
Show Gist options
  • Select an option

  • Save CasperEngl/aa1c80838b9255b2d734f7784e372248 to your computer and use it in GitHub Desktop.

Select an option

Save CasperEngl/aa1c80838b9255b2d734f7784e372248 to your computer and use it in GitHub Desktop.
var priceWidget = document.querySelector('.js-c-product-quick-form');
var financialInfo = document.querySelector(
'.p-product-page__product-financial-info'
);
priceWidget.style.position = 'static';
priceWidget.style.background = 'none';
priceWidget.style.border = 'none';
priceWidget.style.marginTop = '25px';
financialInfo.replaceWith(priceWidget);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment