Forum Replies Created
-
AuthorPosts
-
SupportMember
Hello,
Please update your UMP to version 1.1.3rc2.
Follow http://user-meta.com/upgrade-notice/ while updating.Thanks.
SupportMemberHello,
With version 1.1.3rc2 we remove login form and add option for assigning any form in login process, so that user can have more option to customize login form, and that can be use via shortcode. But unfortunately assigning form to login widget was missing. this will solve with next release. until that please use this temporary solution:
open user-meta/controllers/pro/umLoginWidgetController.php
and add following codes at line 51 (for version 1.1.3rc2)
if( !is_user_logged_in() )
echo '<p> <a href="http://example.com/registration/">Registration</a></p>';
Thanks.
SupportMemberHello,
Please check the html of button:
**input type=”button” name=”button” value=”Export Only” class=”button-primary” onclick=”umUserExport(this,’export’)” **
Is your button html looks like this?
In fact, export process is initiated by calling js function umUserExport(this,’export’) when you click Export Only button. (or similar), In your case the function is not called for any reason.
SupportMemberHello,
By default UMP allow only admin to update other’s profile. If you need to allow other role then admin, you have to write some code.For version 1.1.3rc2 open user-meta/models/umMethods.php
Replace Line 31-34 with following codes:
$role = $userMeta->getUserRole( $user_ID );
$allowedRoles = array( 'administrator', 'put_your_new_role_here' );if( in_array( $role, $allowedRoles ) ){
if( isset($_REQUEST['user_id']) )
$userID = $_REQUEST['user_id'];
}
Present codes for line 31-34:
if( $isAdmin ){
if( isset($_REQUEST['user_id']) )
$userID = $_REQUEST['user_id'];
}
Thanks.
SupportMemberHello,
We are really sorry about the issue. Please apply following fixes: http://user-meta.com/forums/topic/user-export-not-working/#post-2937
if it is not working, check chrome console for js error. and let us know which error is showing.
Thanks.
SupportMemberHello,
Please have a look on http://codex.wordpress.org/Plugin_API/Filter_Reference/show_admin_barThanks.
SupportMemberHello,
Please open views/pro/generateProField.php
and uncomments lin 173 (for version 1.1.3rc2)Thanks.
SupportMemberHello,
We have some js update with new version. Please clear your browser cache and try again. Let us know if it is not working for you.
Thanks.
February 19, 2013 at 6:25 pm in reply to: "Upload Photo" button not appearing in the Avatar field #3055SupportMemberPlease check are there any js error preventing to load upload script.
You can use non ajax solution is ajax is failed for any case.
Thanks.
SupportMemberYou an retrieve avatar location (site url) in email notification area by using %user_avatar% placeholder, you can aslo retrieve avatar location by calling meta_key as “user_avatar”. For file upload other then avatar, you can get that location by calling corresponding meta_key
Thanks.
SupportMemberHello,
meta_key is the key by which you can identify your extra field. If your extra field is “State” you can use meta_key “state”.
Thanks.
SupportMemberHello,
So far UMP doesn’t provide user listing feature. You might need to user another plugin or custom coding for this.Thanks.
SupportMemberHello, With version 1.1.3rc2 you can redirect user to any custom url upon registration or login. To set your redirection go to User Meta >> Settings >> Redirection Tab
Thanks.
SupportMemberHello,
Here is the patch:
Open user-meta/controllers/umFieldsController.php and add following line immediately before line 85 (for version 1.1.3rc2):
$data = apply_filters( 'user_meta_pre_fields_editor_update', $data );
And add following lines of code in your functions.php (Under active theme directory):
add_filter( 'user_meta_pre_fields_editor_update', 'user_meta_pre_fields_editor_update_Function' );
function user_meta_pre_fields_editor_update_Function( $fields ){
$fieldID = "Put your dropdown field id here";
if( !empty( $fields[$fieldID]['options'] ) )
$fields[$fieldID]['options'] = esc_attr( $fields[$fieldID]['options'] );
return $fields;
}
Thanks.
-
AuthorPosts