Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ohyeahdev/b92645202f0052e94ed9cfec368e9ddc to your computer and use it in GitHub Desktop.
Save ohyeahdev/b92645202f0052e94ed9cfec368e9ddc to your computer and use it in GitHub Desktop.
<?php
/*
* #develotips 004- Cuarto programa de WPLIVE
* Author: Oh! Yeah Dev
* Author URL: https://ohyeahdev.com
* Título: Modificar página de carrito de WooCommerce
*/
/*
* Descripción
*
* En la página del carrito añadimos tres productos, que son los más populares y que estén en rebaja
*/
/*
* WP Live: Develotip #4
*/
/* Lo hacemos gracias al hook de WooCommerce woocomerce_after_cart */
add_action( 'woocommerce_after_cart', 'ohy_upsell', 5 );
function ohy_upsell() {
echo '<h2>Espera, que igual te interesa esto...</h2>';
echo do_shortcode( '[products limit="3" columns="3" orderby="popularity" on_sale="true" ]' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment