Remove "From" text from variable subscription product pages
-
Hi,
I’m using the WooCommerce Subscription extension and I’m trying to remove the “From” text from the variable subscription product pages. I found another thread with another person asking for similar (see below) – however this doesn’t include the variable subscription price filter. Does anyone know if this is possible and if so how’d I do this please?
/*WooCommerce – remove “From” text on product pricing */
add_filter(‘woocommerce_variable_price_html’,’custom_from’,10);
add_filter(‘woocommerce_grouped_price_html’,’custom_from’,10);
add_filter(‘woocommerce_variable_sale_price_html’,’custom_from’,10);function custom_from($price){
$new_from = “Deposit”;
$price = str_replace();
return $price;
}Thanks in advance
Paul
The topic ‘Remove "From" text from variable subscription product pages’ is closed to new replies.