Pegar el codigo dentro del functions.php
/*----- Esconder el precio -----*/ add_filter( 'woocommerce_get_price_html', 'hide_price' ); function hide_price( $price ) { return ''; }