Home › Forums › Plugin Support › Plugin Acknowledgement
Tagged: feedback, plugin, user-meta, user-meta-pro, wordpress
- This topic has 10 replies, 7 voices, and was last updated 11 years, 10 months ago by aski.
-
AuthorPosts
-
January 17, 2012 at 6:26 pm #186January 18, 2012 at 7:02 am #187KhaledMember
Thank you for using User Meta Pro.
Yes we have plan to extend User Meta Pro by more feature.List of features, those are in pipeline:
* More control over styling to registration, profile and login page. And improving their functionality.
* One click update/upgrade to Pro version.
* Import user with extra data.
* Allow to add extra field in backend profile/registration page.
* Registration, Profile and Login widget.As a launching offer, all currently subscribed user will get those extra feature for free. You do not need to do any extra payment.
January 19, 2012 at 10:05 am #214kapsicumMemberHi,
We just bought your plugin. Could you please send us an invoice ?
account : pub@kapsicum.com
Thanks a lot.
January 20, 2012 at 12:21 pm #240adminKeymasterThank you for purchasing User Meta Pro. we have sent you an invoice.
Please let us know, if you have any other issue.
April 10, 2012 at 11:18 pm #1066KhaledMemberThis post moves from general section to support section.
July 11, 2012 at 9:28 pm #1703runersMemberPlease help. I need to change the rubens1800@gmail.com vs support@global-medical-program.org
After confirmation email the first address come back again.
July 12, 2012 at 3:02 am #1706KhaledMemberHi, Do you need us to change your email form support@global-medical-program.org to support@global-medical-program.org at http://user-meta.com ?
Thanks.
October 26, 2012 at 10:10 pm #2387Tingeling@MemberSolved.
December 31, 2012 at 8:11 pm #2729askiMemberHere’s the solution, found it out by myself:
Modify the file
wp-content/plugins/events-manager/templates/emails/new-user.phpInclude the following code into new-user.php:
—> see next reply to the post <—
Save new-user.php to the following path:
wp-content/themes//plugins/events-manager/emailsIf the path does not exist, create it.
Done.
Then you will be fine registering accounts from within the “events manager” plugin.
Alex
December 31, 2012 at 8:48 pm #2732askiMemberDecember 31, 2012 at 8:50 pm #2733askiMemberhere’s the code …
global $userMeta;
global $em_temp_user_data;
$user_id = $em_temp_user_data['user_id'];
$user = new WP_User($user_id);$registration = $userMeta->getSettings( ‘registration’ );
$user_activation = $registration[ ‘user_activation’ ];if( in_array( $user_activation, array( ’email_verification’, ‘both_email_admin’ ) ) )
{$login = $userMeta->getSettings( ‘login’ );
if( !$login[ ‘login_page’ ] ) return;$hash = get_user_meta( $user->ID, $userMeta->prefixLong . ’email_verification_code’, true );
if( !$hash ){
$hash = wp_hash_password( $user->user_email );
update_user_meta( $user->ID, $userMeta->prefixLong . ’email_verification_code’, $hash );
}$url = get_permalink( $login[ ‘login_page’ ] );
$url = add_query_arg( array(
‘action’ => ’email_verification’,
’email’ => $user->user_email,
‘key’ => urlencode( $hash ),
), $url);echo ‘Bitte verifiziere Deine Email-Adresse über diesen Link: Email-Addresse verifizieren‘;
}
else if( in_array( $user_activation, array( ‘admin_approval’, ‘both_email_admin’ ) ) )
{
echo ‘Ein Administrator muss Dein Konto noch aktivieren.’;
} -
AuthorPosts
- You must be logged in to reply to this topic.