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 Oscar-Abad-Folgueira/d4fd17365470a04b395180221709797a to your computer and use it in GitHub Desktop.
Save Oscar-Abad-Folgueira/d4fd17365470a04b395180221709797a to your computer and use it in GitHub Desktop.
WooCommerce Snippet: Borrar el contenido del carrito cuando salen los clientes de su cuenta
<?php
/**
* @snippet WooCommerce Snippet: Borrar el contenido del carrito cuando salen los clientes de su cuenta
* @author Oscar Abad Folgueira
* @author_url https://www.oscarabadfolgueira.com
* @snippet_url https://www.oscarabadfolgueira.com/
*/
add_action('clear_auth_cookie', 'oaf_borrar_contenido_carrito');
function oaf_borrar_contenido_carrito() {
global $woocommerce;
$woocommerce->cart->empty_cart();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment