Fix for quantity increment or decrement button doesn't trigger dynamic strikeout price
Fix quantity button not triggering dynamic strikeout price update.
add_action('wp_head', function (){
?>
<script>
(function ($) {
$(document).ready(function ($) {
$(document).on('click', '.plus, .minus', function (){
$(this).closest('form').find('input[name="quantity"]').trigger('change');
});
});
})(jQuery);
</script>
<?php
});PreviousCurrency Switcher, by villatheme - for cart coupon valueNextRemove cross sell block after add the discounted above 3 product quantity in cart
Last updated