I have multiple subscription products in my website with monthly, yearly and weekly.
I am running this code which is working fine (changing "month to 30 days ") but only works for the products with "Monthly" how can I apply it to change the the string for weekly and yearly also?
Thank you
function wc_subscriptions_custom_price_string( $pricestring ) {
$newprice = str_replace( 'month', '30 days', $pricestring );
return $newprice;
}
add_filter( 'woocommerce_subscriptions_product_price_string', 'wc_subscriptions_custom_price_string' );
add_filter( 'woocommerce_subscription_price_string', 'wc_subscriptions_custom_price_string' );