Rumesh Udash
Forum Replies Created
-
Hi @yordansoares,
There is no Global variable for “UR_Admin_User_List_Manager” class in our plugin. Neither the function “pending_users_notices” where you would have used the above code to remove action. We can give you a zip file of our plugin with a temporary solution. Please contact us through our contact form.
https://wpeverest.com/contact/Regards!
Hi @yordansoares,
Please try wrapping above “remove_action” function inside a hook. Like:
add_action( 'wp_head', 'remove_ur_action' ); function remove_ur_action(){ remove_action( 'admin_notices', array( 'UR_Admin_User_List_Manager', 'pending_users_notices' ) ); }Regards!
Hi @cogig,
You can add the shortcode [user_registration_my_account] in your my account page to display my account dashboard.
To customize the design you can use WordPress customizer’s additional CSS feature.
Go to the page you want to customize as Admin. And in the admin bar, you can find the customize button.You have to add redirect_url attribute in login shortcode. like:
[user_registration_my_account redirect_url="/sample-page"]Regards!
- This reply was modified 6 years, 8 months ago by Rumesh Udash.
Hi @ihdumille,
You can add our plugin’s registration URL in that field. If you would like users to register through another registration form, you can add it there.
Regards!
Hi @twgerber,
Please contact us through our contact form for premium support.
https://wpeverest.com/contact/Regards!
Hi @vafunculo,
You can add the following code in the function.php file of your theme.
function ur_login_menu_change( $items ) { $login_url = 'https://ur.me/my-account/'; // Your login page url. if ( is_user_logged_in() ) { if ( is_array( $items ) ) { foreach ( $items as $key => $item ) { if ( $login_url === $item->url ) { $items[ $key ]->title = 'Account'; } } } } return $items; } add_filter( 'wp_nav_menu_objects', 'ur_login_menu_change', 10 );Regards!
You can simply use our Shortcode on your page. For more information please follow our documentation link here.
https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-display-user-registration-form/Regards!
Hi @giobeko,
You can remove the first name and last name field from form builder if you don’t what that. Only then your user name will be used as display name. Or you can also provide display name field to user’s to set their display name on their own.
Latin is not supported currently. We will think about it.Regards!
Hi @saraoucht,
There is no error on your code. We might need to access your backend. Please contact us through our contact form for the support.
https://wpeverest.com/contact/Regards!
Hi @easymike,
You seems to be confused, our form builder is to build registration form only.
For more details, please follow the following documentation link.
https://docs.wpeverest.com/docs/user-registration/registration-form-and-login-form/how-to-show-login-form/Regard!
Hi @bhumipatel1894,
Can you please elaborate more? Which form details are you referring to?
Regards!
Hi @giobeko,
Can you elaborate on your issue? Where do you want to display the first and last name?
Regards!
Hi @saraoucht,
You have to add the code in the bottom of function.php file.
Maybe there is some issue within your code. Can you post the codes you have added here?Regards!
Hi @akmalhakim,
You need to add redirect URL in the shortcode of the login page. Like: [user_registration_my_account redirect_url=”<slug>”]
Regards!
Hi @shehab14,
We have tried to test on your site but didn’t find our plugins. Can you please reactivate it temporarily so that we can debug the issue.
Regards!