Forum Replies Created
-
AuthorPosts
-
KhaledMember
Hello Jeff,
Just send an email to support(at)user-meta.com with the your development site url.
Thanks.
KhaledMemberHello,
I can not see the registration button. How did you call that registration form? by using template tag?
As you customize the process, it is hard to say, what is wrong by looking at it.KhaledMemberHello, Please make sure, you didn’t checked “Disable this notification” checkbox. If you are using “user_meta_admin_email_receiver” filter hook, make sure that it returns some email address.
Thanks.
June 9, 2014 at 7:33 pm in reply to: different admin email address just for user registrations #5457KhaledMemberHello, You can change admin email address only for registration but you need to use dev version for that.
Download and install “Development Version” and put following codes to your functions.php
add_filter( 'user_meta_admin_email_receiver', 'changeAdminEmail', 10, 2 ); function changeAdminEmail( $adminEmails, $key ) { if ( 'registration' == $key ) $adminEmails = array( 'newemail@test.com' ); return $adminEmails; }
Thanks.
KhaledMemberHi Guys, thanks for your comments on it. We have plan to introduce conditional option to field. Along those, any more suggestions will be appreciated.
June 4, 2014 at 11:24 pm in reply to: [user-meta type="login"] doesn't show registration option #5346KhaledMemberHi, Thanks for your suggestion. We will consider it for next release.
KhaledMemberOkay, then put following codes instead earlier one.
add_action( 'wp', 'hideAdminBar' ); function hideAdminBar() { $userID = get_current_user_id(); if ( user_can( $userID, 'administrator' ) ) show_admin_bar( true ); else show_admin_bar( false ); }
Thanks.
KhaledMemberHi, You will notified only for stable version, not for RC version. So, come back to the site after one week 🙂
KhaledMemberHello,
Sorry for overlook your the topics. As ‘support’ asked, Please try dev version, not 1.1.6rc1
Dev Version: http://user-meta.com/download/?package=user-meta-pro&version=dev
If not working, is it possible to make a temp admin account on your site to check the issue, because this is not happening any of our dev server.
Thanks.
KhaledMemberHello,
First of all, wordpress.org is only for free version. For pro support, always write here.
The error is not generated by UMP, absolutely, it is coming from third party plugin. However, to avoiding plugin conflict (like this), we have some work around on it. Please use dev version to avoid this plugin conflict or find the conflicting plugin on your system and disable them.
Dev Version: http://user-meta.com/download/?package=user-meta-pro&version=dev
Thanks.
KhaledMemberHello,
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.Note: This shortcode is available since 1.1.6rc1
Thanks.
KhaledMemberMy Pleasure…
I hope, that will come by two weeks.
Thanks.
KhaledMemberHi Matt,
You will need to upgrade the plugin (to dev version) and also need to use the given code(at least for now, we will provide a new addons for that later).
This feature will included to next release for both single or unlimited license.
Thanks.
KhaledMemberHello, Could you please post your login url here or mailed to support(at)user-meta.com
Thanks.
-
AuthorPosts