$w.onReady(function () { // Replace 'your-product-id' with the actual ID of the product you want to modify let productId = 'your-product-id'; // Replace 'Available for Pre-order' with your desired text let preOrderText = 'Available for Pre-order'; $w('#' + productId).onReady(() => { if ($w('#' + productId).get('inventory') === 0) { $w('#' + productId).text = preOrderText; } }); });
top of page
bottom of page