add_filter( 'woocommerce_get_price_html', 'dmm_change_zero_price_display', 10, 2 );
function dmm_change_zero_price_display( $price, $product ) {
if (empty($product->get_price()) || $product->get_price() == 0) {
$price = __( 'Gratuito', 'woocommerce' );
}
return $price;
}
Copia il codice nel file functions.php del tuo tema child attivo o utilizza il plugin Code Snippets