// Intercept Add-to-Cart only for product ID 729803262 and redirect to your tool
$(document).on('click', '.ecwid-add-to-cart-button[data-product-id="729803262"]', function(e) {
e.preventDefault(); // Prevent Ecwid’s default add-to-cart behavior
// Redirect straight to your custom tool URL
window.location.href = 'https://custom-extrusions.3dprintronics.com/';
});