How to remove profile info step during signup process in socialengine4 php framework?
Well I am wondering to know about How can I remove profile information step from signup process in soc开发者_开发百科ialengine4 PHP framework.
I just want only create account step.
Any help will be greatly appreciated. Thankyou
Run this sql command in your database:
UPDATE engine4_user_signup
SET enable
= '0' WHERE class
= 'User_Plugin_Signup_Fields'
精彩评论