Nascondere prezzi woo

add_filter( ‘woocommerce_get_price_html’, ‘remove_price’);
function remove_price($price){
return;
}

d

Modifica dicitura prodotti correlati

/**

  • disable loading of file when option is not selected
    */
    if( ! empty( avia_get_option( ‘old_browser_support’ ) ) )
    {
    require_once( ‘functions-legacy-browser.php’ );
    }

add_filter( ‘woocommerce_get_price_html’, ‘remove_price’);
function remove_price($price){
return;
}

// How to Change the WooCommerce “Related products” text

add_filter(‘gettext’, ‘change_relatedproducts_text’, 10, 3);

function change_relatedproducts_text($new_text, $related_text, $source)
{
if ($related_text === ‘Related products’ && $source === ‘woocommerce’) {
$new_text = esc_html__(‘Potrebbero interessarti anche…’, $source);
}
return $new_text;
}