Forum Replies Created
-
AuthorPosts
-
SupportMember
Did you set login page to User Meta >> Settings (Login Tab)?
SupportMemberNormally for RC version there is no notification in your admin area. Notification will be available for non-rc version.
For know about new version yo can check http://user-meta.com/changelog/
BTW, did the version solve your issue?
SupportMemberPlease update your UMP version to latest RC and follow http://user-meta.com/upgrade-notice/ while updating.
Thanks.
SupportMemberHave a look on http://user-meta.com/upgrade-notice/ while update to new version.
SupportMemberHello,
Go to User Meta >> Forms Editor and put a class name for “Submit Button Class”
Suppose your class name is rounded-button then write your class definition to your themes style.css
Here is a quick example of a rounded button:
.rounded-button {
-webkit-box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
-moz-box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
box-shadow:rgba(0,0,0,0.0.1) 0 1px 0 0;
background-color:#5B74A8;
border:1px solid #29447E;
font-size:12px;
font-weight:700;
padding:2px 6px;
height:28px;
color:#fff;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px
}
Thanks.
SupportMemberThose code suppose to work. Please check again you have replaced user-meta/models/umMethods.php Line:31-34 for version 1.1.3rc2
If you did right but still not working please contact with our “Contact Us” section with your site url and account to check the issue in your site.
Thanks.
SupportMemberHello,
You can assign css class and css style to any field from User Meta >> Fields Editor.Those css class will be apply to div containing field data. and you can write your css class definition to your theme style.css
Thanks.
SupportMemberHello,
What happend when you click logout url? Is it redirect to same page or stuck to another page or anything else?SupportMemberHello, which version of UMP you are using right now, Please update to latest RC if not updated.
Thanks.
SupportMemberHello,
In User Meta >> Export and Import, There are three block by default.
1. Export & Import User Meta Pro: Here you can export all of plugin configuration as text file and import them to another or same site. Data of text file are serialized and encrypted to contain its consistency.
2. User Import: here you can import users with meta data directly from any csv file.
3. User Export (default): here you can export all of your users from your WP with meta data to csv file, this also include some level of filtering.
Re: You can import users from any csv file as well as exported by the plugin
Thanks.
February 22, 2013 at 12:28 am in reply to: How to set certain field to be able to be editted by certain role #3106SupportMemberHello,
You can set your field as admin only and only visible for specific role by calling “user_meta_field_display” filter action.
Here is a quick example:
add_filter( 'user_meta_field_display', 'user_meta_field_display_function', 10, 3 );
function user_meta_field_display_function($html, $fieldID, $formName){
global $userMeta, $user_ID;if( $fieldID != 'Field Id that you want to control' )
return $html;$role = $userMeta->getUserRole( $user_ID );
if( !in_array( $role, array( 'administrator', 'contributor' ) ) )
return null;return $html;
}
Thanks.
SupportMemberHello, for non ajax there are two setting you need to apply:
1. check “Disable AJAX Upload” in fields editor.
2. check “Do not use AJAX submit” to form editro.Did you checked both checkboxs?
Thanks.
SupportMemberHello, what happend when those role user visit url like: http://example.com/profile/?user_id=xxx
And just for reminder: value of array: ‘greg’, ‘ramon’, ‘elbin’, ‘bertha’, ‘andres’, ‘joaquin’ suppose to be role name not username.
Thanks.
SupportMemberHello, please contact with our “Contact Us” section with your site url. Thanks.
-
AuthorPosts