MemberPress: Adjust Membership Price Based on Membership ID on Checkout Page
function mepr_product_price($product_price, $coupon_code, $product) { if ($product->ID === 123) { $product_price = 50; } return $product_price; } add_filter(‘mepr_adjusted_price’, ‘mepr_product_price’, 10, 3);Continue reading