Forum Replies Created
-
AuthorPosts
-
October 25, 2012 at 11:40 am in reply to: user registration email automatically has password in there- Pro version #2370KhaledMember
Open user-meta/controllers/pro/umEmailNotificationController.php
Comments line number 146 and 147 (for version 1.1.3rc1)
Here are line 146 and 147:
if( ( strpos( $mailBody, '%password%' ) === false ) && ( get_bloginfo( 'admin_email' ) <> @$mailData[ 'email' ] ) )
$mailBody .= "\n" . sprintf( __( 'Password: %s', $userMeta->name ), '%password%' ) . "\n";
After Commented:
//if( ( strpos( $mailBody, '%password%' ) === false ) && ( get_bloginfo( 'admin_email' ) <> @$mailData[ 'email' ] ) )
//$mailBody .= "\n" . sprintf( __( 'Password: %s', $userMeta->name ), '%password%' ) . "\n";
KhaledMemberHello,
Yes you can create themed profile by calling shortcode within page or post.
Please follow http://user-meta.com/user-meta-pro-getting-started/
Thanks.
KhaledMemberHello,
You might need to increase memory_limit.
Here are 3 methods to increase the limit:
1) If you have access to your PHP.ini file, change the line in PHP.ini If your line shows 32M try 64M: memory_limit = 64M ;
2) If you don’t have access to PHP.ini try adding this to an .htaccess file: php_value memory_limit 64M
3) or add ini_set(‘memory_limit’, ’64M’); to your functions.phpThanks.
KhaledMemberSo far, Lost Password being closed while ajax enable. However, we note this issue as improvement.
Thanks.
October 20, 2012 at 9:08 pm in reply to: How long does it take for my pro account to become active? #2350KhaledMemberHello, Most of the special characters suppose to work. BTW, we are keeping it into our checklist.
Thanks for reporting.
KhaledMemberHello,
Probably, it is some js conflict made by other plugin. BTW, you can use non-ajax submit to avoid this. To use non-ajax solution, go to User Meta >> Settings (Login Tab) then check “Disable ajax submit” checkbox. It will submit your login request by html post instead of ajax call.Thanks.
KhaledMemberOkay. This is getting priority.
KhaledMemberSure. we have plans to include this one but not sure about timing. Some more important features improvement are in our to do list.
Thanks.KhaledMemberHello, Please use version 1.1.3rc1. Registration/Profile Widget is available form that version.
Thanks.
KhaledMemberPlease open /user-meta/views/pro/settings/loginSettings.php and add following line of code between line number 36 and 37. (for version 1.1.3rc1)
"value" => @$login[ 'disable_wp_login_php' ],
After adding the line whole block will be something like that:
$html .= $userMeta->createInput( "login[disable_wp_login_php]", "checkbox", array(
"label" => sprintf( __( 'Disable default login url (%s)', $userMeta->name ), site_url( 'wp-login.php' ) ),
"value" => @$login[ 'disable_wp_login_php' ],
"enclose"=> "p",
) );
KhaledMemberHello,
So far UMP doesn’t provide import/export functionality for form or settings. You need to do manual migration.Thanks.
KhaledMemberHello,
You can find
in user-meta/views/pro/generateField.php line:184 & 193 (for version 1.1.3rc1)Thanks.
KhaledMemberHello,
It might be some plugin conflict or theme issue. Please try with temporarily disable other plugin.
Thanks.October 14, 2012 at 8:33 pm in reply to: add fields dynamically based on the chosen option in another field #2301KhaledMemberHello, So far UMP not provided dynamic field loading solution. It might me included at future.
Thanks.
-
AuthorPosts