READ THE FIRST
1: Allow Register user in site
When someone tries to register, it says "Registering new users is currently not allowed." => To Resolve this problem: Go to Settings >> General >> tick choose membership

2: Create Login and Register User Form
Edit a header and use "Menu Account" Element to create a Login/Register Button in header

"Custom Login Link" setting: You can insert new custom link here or Empty. If empty the system will get page of "Sign in page" setting of Login Plugin Setting.
"Custom Register Link" setting: You can insert new custom link here or Empty. If empty the system will get page of "Sign up page" setting of Login Plugin Setting.
3: Login Form Page

a) Recaptcha
If you want to display Recaptcha in login form, you have to Enable it in Recaptcha Setting
b) Login with facebook or other social
Login with social: Facebook, Twitter, Google...
You can install https://wordpress.org/plugins/nextend-facebook-connect/ to use this feature.
4: Register Form Page

a) Add other fields to Regsiter form
You can setup it in Custom Register Fields of Login Plugin. Read here
b) Hide Confirm Email, First Name, Last Name, Password, Phone, Website, Job, Addresss, Description
You can config in Regsiter User Form Settings of Login Plugin Settings
c) Remove Vendor option
Add this code to functions.php file in child theme
add_filter( 'meup_register_vendor_account', function(){ return false; } );
d) Remove User Option
Add this code to functions.php file in child theme
add_filter( 'meup_register_vendor_account_checked', function(){ return 'checked'; } );
add_filter( 'meup_register_user_account_checked', function(){ return ''; } );
add_filter( 'meup_register_user_account', function(){ return false; } );
e) Make Vendor option like default
Add this code to functions.php file in child theme
add_filter( 'meup_register_vendor_account_checked', function(){ return 'checked'; } );
add_filter( 'meup_register_user_account_checked', function(){ return ''; } );
f) Terms and conditions
You can change link of Terms and Conditions in Login Settings
You can remove it by add bellow code to functions.php file in child theme
add_filter( 'el_show_register_account_terms', '__return_false' );
g) Display Recaptcha
If you want to display Recaptcha in register form, you have to Enable it in Recaptcha Settings
h) Register with social
You can install https://wordpress.org/plugins/nextend-facebook-connect/ to use this feature.
However the system only register normall user not vendor when use this feature.
5: Choose Page display Dashboard of User, Vendor
After login or register form successfully, the system will redirect to Dashboard of user/vendor.
You have to choose the page in Events Setitng >> Settings.
This content of page has shortcode: [el_member_account/]

6) Admin Approve Vendor
If you want to Admin will check information of Vendor before Vendor can create an event. Read here
7) Customize Template
if you want to customize template of form in login plugin.
Copy file in folder plugins/ova-login/templates/ to child theme meup-child/ovalg-templates/ folder
Note: You have to make folder ovalg-templates in child theme
Last updated
Was this helpful?