Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hello,
get_term_link() function should work too. As you got WP Error, it means the function is calling and returns WP_error object. get_term_link() returns error when it doesn’t find the term. Please make sure you have provided correct arguments into get_term_link.
“admin-ajax.php doesn’t complete the request.”: “login_redirect” expects string (url) not object, and there are no other error handling after that, so it fails.
And earlier codes fails because of missing 4th arguments.
add_filter( 'login_redirect', 'redirectClient', 10 , 3 );
Thanks.
KhaledMemberHello Amirul,
With single site license, the plugin can be validated one site at a time. However, you can validate the dev site first, work on it, then export all of its settings and withdraw the license from dev site. Once you have withdrawn the license, you can validate the plugin on your production site and imports settings from dev site.
Thanks.
KhaledMember$user suppose to return WP_User or WP_Error object. So for success login $user->ID should work. If you have a look on file user-meta/models/pro/umSupportProModel.php line (300-325), you can see $user = wp_signon() and this $user object are feed to login_redirect hook. So it should work. However, is it possible to create a temp admin account for us to check the issue on your site?
Thanks.KhaledMemberHello, Please try development version and put following code to functions.php (under current theme)
DEV version: http://user-meta.com/download/?package=user-meta-pro&version=devadd_filter( 'user_meta_admin_email_receiver', 'changeAdminEmails' ); function changeAdminEmails( $emails ) { return array( 'xyz@gmail.com', 'abc@gmail.com' ); }
Thanks.
KhaledMemberCould you please post your whole code here.
Thanks.
KhaledMemberHello,
Please try Dev version (http://user-meta.com/download/?package=user-meta-pro&version=dev)
We have quick workaround for multiselect.
Thanks.
KhaledMemberHello,
We are working to allow plugin integration with UMP. We’ll let you know when we have done.Thanks.
May 26, 2014 at 8:43 pm in reply to: How to add a table into backend profile and display the table for Subscriber ? #5279KhaledMemberHello,
You can display content from saved field by using following shortcode:
[user-meta type="field-value" id="5"]
Please change id=”5″ to your field id.
For displaying static data, you can use “HTML” field from User Meta >> Fields Editor.
Thanks.
KhaledMemberHello,
Please try again with Development Version from http://user-meta.com/downloads/
If it doesn’t work then follow:
Thanks.
KhaledMemberHello,
Please try http://user-meta.com/activationIf the url doesn’t work, send an email to support(at)user-meta.com with your site url in where you wanted to validate the license.
Thanks.
KhaledMemberHello,
We have sent you an email containing another way of validation. Please check your email.Thanks.
KhaledMemberHi, thanks for the login data. Could you please set a ftp account to dig down and solve the issue.
KhaledMemberHi,
Thanks for using pro version. UMP use http://example.com/wp-admin/admin-ajax.php for it’s manipulation. Please check admin-ajax.php is not blocked by any other plugins. And clean your browser cache then try again.
-Regards
KhaledKhaledMemberHi, You can use “Textbox” field and mark the field as required then drag the field to your registration form and you have done.
Thanks.
-
AuthorPosts