🎉 Entrepreneur's Day Sale - Get 26% OFF on All Plans – Limited Time Only! Use Code

How do I rename Subscriptions to Payment Plans in the My Account page title

Estimated reading: 1 minute 705 views

To rename Subscriptions to Payment Plans on your My Account page, insert the following snippet into your functions.php file:

function start_modify_html(){
	ob_start();
}


function end_modify_html(){
	$html = ob_get_clean();
	$html = str_replace( 'Payment Plan', 'Subscription', $html );
	echo $html;
}


add_action( 'wp_head', 'start_modify_html');
add_action( 'wp_footer', 'end_modify_html');
Overview
Features
Pricing
Blog
Account
Documentation
Get in Touch
Support
Customization Request
Contact
Legal
Terms and Conditions
Refund Policy

👋🏻 Hello Mate
Need help in Payment Plans
Support Bot Online
Support Bot
Hi! 👋 I'm Support Bot. Ask me anything!
16:17

Provide the details