Thank you for reading this post. I have been trying to change the "Free Trial" text in Woocommerce Subscriptions. I was able to find code to change "Sign Up Fee" but have not been able to find ability to change this other section.
function change_subscription_product_string( $subscription_string, $product, $include ){
if( $include['sign_up_fee'] ){
$subscription_string = str_replace('sign-up fee', '= total price. After intro period subscription will renew monthly.', $subscription_string);
}
return $subscription_string; } add_filter( 'woocommerce_subscriptions_product_price_string', 'change_subscription_product_string', 10, 3 );
The code I have currently created is : "$199.00 for 1 month with a 2-month free trial and a $398.00 = total price. After intro period subscription will renew monthly."
Need to change to "$199.00 for 1 month with a 2-month minimum and a $398.00 = total price. After intro period subscription will renew monthly.