Hello @fsan2val,
You could create a special redirect for the users that will choose the manual payment gateway.
https://www.cozmoslabs.com/docs/paid-member-subscriptions/developer-knowledge-base/redirect-user-to-custom-page-after-manual-payment/
This code will redirect your users to a special page after the manual payment. On that page, you can place the instruction for the payment.
Here is how to implement the code:
1. Create your own empty custom plugin. Here is a link on how to do that.
2. Add the code in your plugin. Also, create the page where the instructions will be. In the code, replace /payment-info
with the slug of your own page.
add_action(‘pms_get_redirect_url’, ‘pmsc_redirect_after_manual_payment’, 10, 2);
function pmsc_redirect_after_manual_payment( $url, $location ) {
if ( isset($_POST[‘pay_gate’]) && $_POST[‘pay_gate’] != ‘manual’)
return $url;
$subscription_plan = pms_get_subscription_plan($_POST[‘subscription_plans’]);
if ($subscription_plan->price == 0)
return $url;
else
return home_url( ‘/payment-info’ );
}
3. Save your plugin and install it on your WP page as any other plugin.
Have a wonderful day!
Kind regards,`