Steps
- Open
functions.php. - Add the code below.
- Save the file.
Done — a custom message will appear below the Add to Cart button.
function add_custom_product_message() {
echo '<p class="custom-message">Free Shipping Available</p>';
}
add_action(
'woocommerce_after_add_to_cart_button',
'add_custom_product_message'
);