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:

  1. make registered customers inapproved - administrator has approve them.
  2. 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.).
  3. after customer pays approve him within administration...

automated solution:

  1. let registering user decide how pay registration fee (paypal, transfer, other services).
  2. after registration, while new customer still not approved, redirect pay service (if applicable).
  3. 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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -