add_action('wp_footer', function () { ?>
jQuery(function($) { $('form.cart').on('submit', function(e) { setTimeout(function() { let error = $('.woocommerce-error'); if (error.length) { $('html, body').animate({ scrollTop: error.offset().top - 100 }, 600); } }, 200); // timeout daje czas na wygenerowanie komunikatu }); });