Put this snippet into any of the “Custom JS” fields for your Handsome Checkout page and it will trigger the Order Bump checkbox properly after page loads:
1 2 3 4 5 6 7 8 9 10 | jQuery(document).ready(function(){ var check = false; jQuery(document.body).on( 'updated_checkout', function(){ if( check === false ) { jQuery('#wc-hcc-order-bump-cb').attr('checked', true).trigger('change'); check = true; } }); }); |