Skip to main content

Product 'Buy Now' button auto open

Place this code in the script section of the advanced theme editor. It will make it so that all products have the checkout form open automatically so they do not have to click 'Buy Now' first.
 

// Script to auto-expand product Buy Now forms
window.onload = function() {
  var payNowDiv = document.getElementById('pay-now');
  payNowDiv.style.display = 'none';
  var checkoutFormContainerDiv = document.getElementById('checkout-form-container');
  checkoutFormContainerDiv.style.display = '';
}