Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunshinephotocart/64bf83fd97a49f135e7b46478914bfa5 to your computer and use it in GitHub Desktop.
Save sunshinephotocart/64bf83fd97a49f135e7b46478914bfa5 to your computer and use it in GitHub Desktop.
Default lightbox quantity to 1
<?php
// Add following to your theme's functions.php file or use something like https://wordpress.org/plugins/custom-css-js-php/
add_action( 'sunshine_before_add_to_cart_form', 'sunshine_lightbox_default_qty_1' );
function sunshine_lightbox_default_qty_1() {
?>
<script>
jQuery( document ).ready( function($){
$( 'input[name="quantity"]' ).val( 1 );
});
</script>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment