Skip to Content Skip to Menu

Plans - User approval upon payment verification

  • pastoweb
  • pastoweb
  • ONLINE
  • Posts: 156
  • Thanks: 10
  • Karma: 0
1 year 10 months ago #331997 by pastoweb
Hi, is it possible to set CB so that users paying plans with Paypal or similar are approved automatically, while those paying with bank transfer are approved manually upon payment verification?

Please Log in or Create an account to join the conversation.

  • krileon
  • krileon
  • ONLINE
  • Posts: 48419
  • Thanks: 8274
  • Karma: 1443
1 year 10 months ago #332000 by krileon
There's no official feature for that. Approval can only be overridden per-plan. Best I can think of is to auto-approve them once their payment has completed using CB Auto Actions. Example as follows.

Global
Triggers: onCPayAfterPaymentStatusUpdateEvent
User: Automatic
Type: Code
Access: Everybody
Conditions
Condition 1
Field: Custom > Value
Custom Value: [approved]
Operator: Not Equal To
Value: 1
Condition 2
Field: Custom > Value
Custom Value: [var4]
Operator: Equal To
Value: Completed
Condition 3
Field: Custom > Value
Custom Value: [var2_gateway_account]
Operator: Equal To
Value: PAYMENT_GATEWAY_ID_HERE
Action
Method: PHP
Code:
Code:
$user->approveUser( 1 ):

This acts on the payment status change event for a basket. First it makes sure the user is already unapproved as there's not much point approving an already approved user. Then when a basket payment is marked completed (paid) it'll also check what payment gateway was used to make the payment. That is where we check against PAYMENT_GATEWAY_ID_HERE which should be set to the id of your PayPal payment gateway. Next it runs the necessary PHP to force the user approved.


Kyle (Krileon)
Community Builder Team Member
Before posting on forums: Read FAQ thoroughly + Read our Documentation + Search the forums
CB links: Documentation - Localization - CB Quickstart - CB Paid Subscriptions - Add-Ons - Forge
--
If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
--
If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please send me a private message with your thread and will reply when possible!
--
Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
--
My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.

Please Log in or Create an account to join the conversation.

Moderators: beatnantkrileon
Powered by Kunena Forum