I want To take registration Fee in Opencart -
i developing e-commerce website using opencart framework , want take registration fee $25 while registering user , how can implement or 1 have extension that. please me . in advance.
the simplest solution:
- make registered customers inapproved - administrator has approve them.
- display each customer's id on "after-register" confirm page information registration fee has payed , while using id payment variable symbol (you format id code
000000001
,000012456
,0124578963
, etc.). - after customer pays approve him within administration...
automated solution:
- let registering user decide how pay registration fee (paypal, transfer, other services).
- after registration, while new customer still not approved, redirect pay service (if applicable).
- after successful payment (still using customer's id variable symbol) automatically approve user within payment callback.
- if bank transfer available you'd still have approve them manualy
- in case of unsuccessful payment nothing - user can re-try payment , approved or not...
the second option requires lot of work done (new payment service connections, new callback handlers, registration process modification)...
i have done once before choosed go first (manual , easy implement) option.
Comments
Post a Comment