Duplicate Snippet
Embed Snippet on Your Site
MemberPress: Change Non-Recurring Renewal Price
This code snippet allows modification of a one-time membership’s price for renewals.
The code should be modified by replacing the dummy ID of 123 with the ID of the real one-time membership, on the following line:
if ( $product->ID === 123 && in_array( $product->ID, $subscriptions ) ) {
Further, the renewal price in the example is set to 10. The membership renewal price can be modified on this line:
$product_price = 10; // set the renewal price
Code Preview
php
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
Comments