jQuery(document).ready(function() {
// Define the specific product ID for the tribute card.
const tributeCardProductId = 26494;
// 1. Check if the current page is the specific single product page for the tribute card.
const tributeCardProductPage = jQuery('body.single-product.postid-26494');
if (tributeCardProductPage.length > 0) {
const successMessage = jQuery('.woocommerce-message');
if (successMessage.length > 0) {
const messageTop = successMessage.offset().top;
// Animate the scroll to the message.
jQuery('html, body').animate({ // Use jQuery here
scrollTop: messageTop - 200 // Adjust 50px as needed for padding/fixed header
}, 800);
}
}
});