Forum Replies Created
-
AuthorPosts
-
Khaled
MemberOkay, just comments line 539 and 540 on user-meta/framework/models/PluginFrameworkWPSupport.php
Khaled
MemberHello, I have seen another post from you http://user-meta.com/forums/topic/save-automatically/
It seems that you have already resolved issue for file uploading error.
Thanks.
Khaled
MemberHello
Following code might be helpful for you
add_action( 'pf_file_upload_after_uploaded', 'autoSaveFile', 50, 2 ); function autoSaveFile( $field_name, $filepath ) { global $userMeta; $user_id = get_current_user_id(); if ( empty( $filepath ) || empty( $user_id ) ) return; update_user_meta( $user_id, $field_name, $filepath ); $userMeta->removeFromFileCache( $filepath ); }
These codes will immediately save image/file after upload (ajax upload).
Thanks.
Khaled
MemberHello,
To show any field on wp-admin/profile, go to User Meta >> Settings (Backend Profile), Here you can have your extra field created by Fields Editor, just drag-drop your desire fields and hit save. If any field marked as “Admin-Only” they will only visible for admin users.
Thanks.
Khaled
MemberHello,
Please try http://user-meta.com/activation/Thanks.
Khaled
MemberHave a look on user-meta/controllers/pro/umBackendProfileController.php
Those code might give you little help to write your own code.
Thanks.
Khaled
MemberHello,
You can not use user-meta form inside edit_user_profile_update as it will create nested form. You can drag-drop fields to backend profile. However, we are hopeful to release field generation template tag with next release.Thanks.
Khaled
MemberHello,
Template Tag “userMetaProfileRegister” create a new form element. So you can not use this template tag to “edit_user_profile”, as it will create nested form and nested form is not supported on html.You could use User Meta >> Settings (Backend Profile) to add new field to profile.
Thanks.
Khaled
MemberHello,
When any new user was added by admin, that user will immediately activate regardless of settings. I have just checked your system, it seems ok to me. Please make sure you are not logged in as admin when checking again 😉Thanks.
Khaled
MemberHello,
Please try non-ajax solution. To disable ajax go to User Meta >> Settings (Login Tab) then check “Disable AJAX submit” and hit save button.
Thanks.
Khaled
MemberHello,
You could use wp_logout_url()
http://codex.wordpress.org/Function_Reference/wp_logout_url
Thanks.
Khaled
MemberHello, Please try version 1.1.5.
Thanks.Khaled
MemberHello, Please try manual process. Download 1.1.5 from http://user-meta.com/downloads/
Deactivate and delete your existing UMP version (your data won’t be deleted), then install and activate newly downloaded version.Thanks.
Khaled
MemberHello,
With dropdown (under assigned field), select “Custom Field”. You can change meta_key for certain custom field.Thanks.
-
AuthorPosts