Forum Replies Created
-
AuthorPosts
-
KhaledMemberKhaledMember
Hello Scott, We are happy to know you like our plugin. For changing username to firstname, you don’t need to hack the plugin. Go to User Meta >> Settings (Login Tab), under “Logged in user profile settings” you can change %user_login% to %first_name%
Thanks.
KhaledMemberHi, UMP doesn’t deal with page restriction. You can use any membership plugin for that.
Thanks.
KhaledMemberHello, you could manually upload and extract the plugin to wp-content/plugins/ directory. And activate it from the WP admin area.
Thanks.
February 9, 2014 at 11:04 pm in reply to: Registration form with a biography field that contains text and hmlt #4813KhaledMemberHello,
You can use “Biographical Info” field and configure it for “Use rich text”
Thanks.
KhaledMemberHello,
Please try version 1.1.5rc2
Thanks.
KhaledMemberHello,
Please make sure that you have chosen password field from WordPress default field not from extra fields.
Thanks.
KhaledMemberHello, Please try 1.1.5rc2
Thanks.
KhaledMemberKhaledMemberKhaledMemberJanuary 31, 2014 at 12:48 am in reply to: Set a Placeholder Text on Login and Registration Forms Fields #4762KhaledMemberHello,
With version 1.1.5rc2 you can add placeholder to your field by using hooks.
add_filter( 'user_meta_field_config', 'usePlaceholder', 10, 3 ); function usePlaceholder( $field, $fieldID, $formName ){ //if( $fieldID != 'Your_Field_ID' ) //return $field; $field['placeholder'] = $field['field_title']; return $field; }
On above example, field_title will use as placeholder. For login, you can use custom form http://user-meta.com/news/build-custom-login-form/
Thanks.
KhaledMemberAction: user_meta_after_user_register are loaded on admin-ajax.php(for ajax) or inside init hook. So it suppose to load after init. To make sure, the action are loaded later, you can try following changes.
If you are using 1.1.5rc1, replace line 54,55 on user-meta/framework/init.php
add_action( 'wp_ajax_pf_ajax_request', array( $this, 'pfAjaxRequest' ) ); add_action( 'wp_ajax_nopriv_pf_ajax_request', array( $this, 'pfAjaxRequest' ) );
with
add_action( 'wp_ajax_pf_ajax_request', array( $this, 'pfAjaxRequest' ), 80 ); add_action( 'wp_ajax_nopriv_pf_ajax_request', array( $this, 'pfAjaxRequest' ), 80 );
And line 35 on controllers/umPreloadsController.php
add_action( 'init', array( $this, 'processPostRequest' ) );
with
add_action( 'init', array( $this, 'processPostRequest' ), 80 );
Try those changes with your earlier code http://user-meta.com/forums/topic/cant-set-custom-taxonomy-terms-via-user-meta-form/#post-4671
And although functions.php load before init but you are executing your code by calling action, those action will load after init.
Thanks.
KhaledMemberHello, add the following line between line 544 and 546 in user-meta/models/umSupportModel.php
if( empty( $fileSubPath ) ) return $file;
Thanks.
-
AuthorPosts