Documentation


Deprecated: Function wp_get_loading_attr_default is deprecated since version 6.3.0! Use wp_get_loading_optimization_attributes() instead. in /var/www/html/wp-includes/functions.php on line 6131

Change the term used to describe renewals

When a subscription product is using a Subscription Schedule the term used for the subscription frequency is changed to “renewal” (singular) and “renewals” (plural).

To change this term to one that fits your renewal you can use this code snippet:

/**
* Change the word shown for subscription period renewal
* @param $term
* @return string
*/
function sp_update_term( $term ){
return 'cycle';
}
add_filter( 'sp_period_name_single', 'sp_update_term', 10 );

The above code snippet would display like this:

Subscriptions Schedule Frequency change term to cycle
Updated Subscription Frequency/Period Term

Need help from professional WooCommerce developers?

Get a quote from Grow Development today!