πŸŽ‰ Labor Day Sale - Get 26% OFF on All Plans – Limited Time Only! Use Code

How can I extend more than 24 months financing to 36, 48, 60, 72, and 84 months

Estimated reading: 1 minute 868 views

Add the following snippet to your functions.php file or using theΒ Code Snippets plugin:

// Extend Payment Plan lengths for 36 months, 48 months, 60 months, 72 months, 84 months
function wpp_extend_subscription_expiration_options( $subscription_lengths ) {

	$subscription_lengths['month'][36] = wcs_get_subscription_period_strings(36, 'month');

	$subscription_lengths['month'][48] = wcs_get_subscription_period_strings(48, 'month');

	$subscription_lengths['month'][60] = wcs_get_subscription_period_strings(60, 'month');

	$subscription_lengths['month'][72] = wcs_get_subscription_period_strings(72, 'month');

	$subscription_lengths['month'][84] = wcs_get_subscription_period_strings(84, 'month');

	return $subscription_lengths;
}

add_filter('woocommerce_subscription_lengths', 'wpp_extend_subscription_expiration_options');

After adding this snippet you will have the option to extend payment plan length for 36 months, 48 months, 60 months, 72 months, 84 months.

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!
10:39

Provide the details