Want to highlight your bestsellers? This simple PHP code lets you add a custom message, like “Shop Our Bestsellers!” above your product listings on the shop page. Enhance your store’s appeal with this easy update!
// Add a custom message above products on the shop page
add_action( 'woocommerce_before_shop_loop', 'codebykp_add_custom_message_before_products', 15 );
function codebykp_add_custom_message_before_products() {
echo '<div class="custom-shop-message"><h2>Shop Our Bestsellers!</h2></div>';
}