This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @snippet Relatorio de vendas por ano e estado brasileiro @ WooCommerce Admin | |
* @sourcecode https://gist.github.com/emanweb/3272d93d481e8c749edaa2cce2641b28 | |
* @author Emanuel Costa | |
* @testedwith WooCommerce 6.3.1 | |
* @inspiredby https://businessbloomer.com/?p=72853 (Rodolfo Melogli) | |
* @instructions Inclua esse código no functions.php to seu tema filho (child theme) | |
*/ | |
// ----------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'woocommerce_no_products_found', 'show_products_on_no_products_found', 20 ); | |
function show_products_on_no_products_found() { | |
echo '<h2>' . __( 'Mas você pode gostar disso...', 'domain' ) . '</h2>'; | |
echo do_shortcode( '[recent_products per_page="4"]' ); | |
} |