Display a custom promotional message above the product listing on your WooCommerce Shop page.
Steps
- Add the code below to your theme’s
functions.php. - Change the message to your preferred text.
- Save and refresh the Shop page.
/**
* Add custom message before WooCommerce shop products
*/
function custom_shop_page_message() {
if ( is_shop() ) {
echo '<div class="custom-shop-message">';
echo 'Free shipping on orders over $50!';
echo '</div>';
}
}
add_action( 'woocommerce_before_shop_loop', 'custom_shop_page_message', 5 );