matias2
10/2/2019 - 2:26 PM

Ocultar el precio

Pegar el codigo dentro del functions.php

/*----- Esconder el precio -----*/
add_filter( 'woocommerce_get_price_html', 'hide_price' );
function hide_price( $price ) {
    return '';
}