I want to change the text and the order of my price string in WooCommerce Subscriptions. Right now it says:
“$35.00 on the 1st of each month for 11 months and a $35.00 sign-up fee.”
and I want it to say:
“$35.00 for the first box and then $35.00 on the 1st of each month for 11 months.”
I found this code that I can use to change "sign-up fee" to "for the first box":
/* WooCommerce Subscriptions Price String */
function wc_subscriptions_custom_price_string( $pricestring ) {
$newprice = str_replace( 'sign-up fee', 'for the first box', $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' );
Now it says “$35.00 on the 1st of each month for 11 months and a $35.00 for the first box.”
How can I change the order?