Wocommerce display empty cart notice with a return to shop button when user vist the cart page without any products. ever wanted to suggest some products in epty car page. I t is quite easy, try this code in functions.php
add_action('woocommerce_cart_is_empty', 'suggest_some_products'); function suggest_some_products() { echo '<p><strong>Checkout some selling products</strong></p>'; echo do_shortcode( '[best_selling_products per_page="12"]' ); }
Anything that output in the suggest_some_products function will go in the empty cart page.