UNDER GARMENTS
jQuery(document).ready(function($){
$('body').on('click', '.single_add_to_cart_button', function(e){
if ($(this).hasClass('disabled') || $(this).is(':disabled')) {
return false;
}
setTimeout(function(){
var checkoutSection = document.getElementById("checkout-area");
if(checkoutSection){
checkoutSection.scrollIntoView({
behavior: "smooth",
block: "start"
});
}
}, 1000);
});
});