No se han encontrado widgets en la barra lateral
0 0
Read Time:31 Second

Agregar el sgte código en el archivo de functions.php

add_action('woocommerce_checkout_process', 'wc_minimum_order_amount'); add_action('woocommerce_before_cart', 'wc_minimum_order_amount'); 
function wc_minimum_order_amount() { 
// Set this variable to specify a minimum order value 
$minimum = 30000; 
if (WC()->cart->total < $minimum) { if (is_cart()) { wc_print_notice( sprintf('Tu total es %s. El monto mímimo para comprar es de %s', wc_price(WC()->cart->total), wc_price($minimum) ), 'error' );       } else { wc_add_notice( sprintf('Llevas %s en tu carro. La compra mínima es de %s', wc_price(WC()->cart->total), wc_price($minimum) ), 'error' ); 
} } }
Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %