I would like to hide the Subscription product variation details "From: $38.50 / month for 12 months and a $50.00 sign up fee" I need a code to disable.
I've tried other snippets which hide the word "from" or changed the verbiage of "sign up fee".
/*
* Disable Variable Product Price Range completely:
**/
add_filter( 'woocommerce_variable_sale_price_html', 'my_remove_variation_price', 10, 2 );
add_filter( 'woocommerce_variable_price_html', 'my_remove_variation_price', 10, 2 );
function my_remove_variation_price( $price ) {
$price = '';
return $price;
}
The code works only for default WooCommerce products but not with subscription products.
I expect "From: $38.50 / month for 12 months and a $50.00 sign up fee" to be hidden.