<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>User Meta Pro</title>
	<atom:link href="http://user-meta.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://user-meta.com</link>
	<description>WordPress user management plugin</description>
	<lastBuildDate>Tue, 18 Jun 2013 20:17:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Withdraw License</title>
		<link>http://user-meta.com/documentation/withdraw-license/</link>
		<comments>http://user-meta.com/documentation/withdraw-license/#comments</comments>
		<pubDate>Tue, 28 May 2013 16:06:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=3774</guid>
		<description><![CDATA[Before requesting for refund please withdraw the license of User Meta Pro from your site. License Withdraw Instruction: Go to User Meta >> Settings, click &#8220;Update Credentials&#8221; button, then click &#8220;Withdraw License&#8221; button.]]></description>
				<content:encoded><![CDATA[<p>Before requesting for refund please withdraw the license of User Meta Pro from your site.</p>
<p><strong>License Withdraw Instruction:</strong></p>
<p>Go to User Meta >> Settings, click &#8220;Update Credentials&#8221; button, then click &#8220;Withdraw License&#8221; button.</p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/documentation/withdraw-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add registration link after login form</title>
		<link>http://user-meta.com/howto-advance/add-registration-link-after-login-form/</link>
		<comments>http://user-meta.com/howto-advance/add-registration-link-after-login-form/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 10:19:47 +0000</pubDate>
		<dc:creator>Support</dc:creator>
				<category><![CDATA[howto-advance]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=3522</guid>
		<description><![CDATA[To add registration link after default login form, add following codes to your functions.php (under current theme directory): add_filter( 'user_meta_default_login_form', 'user_meta_default_login_form_function' ); function user_meta_default_login_form_function( $config ){ $config['after_form'] = '&#060;p&#62;&#060;a href="http://example.com/registration"&#62;Registration&#060;/a&#62;&#060;/p&#62;'; return $config; }]]></description>
				<content:encoded><![CDATA[<p>To add registration link after default login form, add following codes to your functions.php (under current theme directory):</p>
<pre>
add_filter( 'user_meta_default_login_form', 'user_meta_default_login_form_function' );
function user_meta_default_login_form_function( $config ){
    $config['after_form'] = '&#060;p&gt;&#060;a href="http://example.com/registration"&gt;Registration&#060;/a&gt;&#060;/p&gt;';
    return $config;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/howto-advance/add-registration-link-after-login-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>user_meta_after_user_register</title>
		<link>http://user-meta.com/action-hooks/user_meta_after_user_register/</link>
		<comments>http://user-meta.com/action-hooks/user_meta_after_user_register/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 17:57:13 +0000</pubDate>
		<dc:creator>Support</dc:creator>
				<category><![CDATA[Action Hooks]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=3401</guid>
		<description><![CDATA[This action will run immediately after user registration Parameters: $response (object) Example: add_action( 'user_meta_after_user_register', 'user_meta_after_user_register_function' ); function user_meta_after_user_register_function( $response ){ $userID = $response-&#62;ID; // Your code goes here } Change Log: Since 1.1.2]]></description>
				<content:encoded><![CDATA[<p>This action will run immediately after user registration</p>
<p><strong>Parameters: </strong>$response (object)</p>
<h3>Example:</h3>
<pre>
add_action( 'user_meta_after_user_register', 'user_meta_after_user_register_function' );
function user_meta_after_user_register_function( $response ){
    $userID = $response-&gt;ID;
    // Your code goes here
}
</pre>
</p>
<p><strong>Change Log: </strong>Since 1.1.2</p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/action-hooks/user_meta_after_user_register/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filter Hook: user_meta_pre_user_register</title>
		<link>http://user-meta.com/filter-hooks/user_meta_pre_user_register/</link>
		<comments>http://user-meta.com/filter-hooks/user_meta_pre_user_register/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 16:30:46 +0000</pubDate>
		<dc:creator>Support</dc:creator>
				<category><![CDATA[Filter Hooks]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=3391</guid>
		<description><![CDATA[This filter can be used to modify/add user data before user registration. Custom validation before user registration is possible. Parameters: $userData (array) Example More validation before user register add_filter( 'user_meta_pre_user_register', 'user_meta_pre_user_register_function' ); function user_meta_pre_user_register_function( $userData ){ // Write your code for more validation before user register. // return WP_Error object if there are any error [...]]]></description>
				<content:encoded><![CDATA[<p>This filter can be used to modify/add user data before user registration. Custom validation before user registration is possible.</p>
<p><strong>Parameters:</strong> $userData (array)</p>
<h3>Example</h3>
<h3>More validation before user register</h3>
<pre>
add_filter( 'user_meta_pre_user_register', 'user_meta_pre_user_register_function' );
function user_meta_pre_user_register_function( $userData ){
    // Write your code for more validation before user register.
    // return WP_Error object if there are any error or validation failed.
    
    return $userData;
}
</pre>
</p>
<h3>Add more extra data to usermeta table</h3>
<pre>
add_filter( 'user_meta_pre_user_register', 'user_meta_pre_user_register_function' );
function user_meta_pre_user_register_function( $userData ){
    // You can add some conditionl metadata
    $userData[ 'new_meta_key' ] = 'New Meta Value';
    
    return $userData;
}
</pre>
</p>
<p><strong>Change Log: </strong>Since 1.1.2</p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/filter-hooks/user_meta_pre_user_register/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filter Hook: user_meta_field_config</title>
		<link>http://user-meta.com/filter-hooks/user_meta_field_config/</link>
		<comments>http://user-meta.com/filter-hooks/user_meta_field_config/#comments</comments>
		<pubDate>Wed, 06 Mar 2013 07:40:08 +0000</pubDate>
		<dc:creator>Support</dc:creator>
				<category><![CDATA[Filter Hooks]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=3248</guid>
		<description><![CDATA[This filter hook can be use to modify fields data. Function arguments: Form Data (array), Field ID (int), Form Name (string) Supported array key for Form Data (first argument): field_title &#8211; Field Title. field_type &#8211; Type of html input (e.g. checkbox, text, hidden, select). field_name &#8211; Name of the field. field_value &#8211; Retrieved value of [...]]]></description>
				<content:encoded><![CDATA[<p>This filter hook can be use to modify fields data.<br />
Function arguments: Form Data (array), Field ID (int), Form Name (string)</p>
<p><strong>Supported array key for Form Data (first argument):</strong></p>
<ul>
<li><span style="line-height: 14px;"><strong>field_title</strong> &#8211; Field Title.</span></li>
<li><strong>field_type</strong> &#8211; Type of html input (e.g. checkbox, text, hidden, select).</li>
<li><strong>field_name</strong> &#8211; Name of the field.</li>
<li><strong>field_value</strong> &#8211; Retrieved value of the field.</li>
<li><strong>default_value</strong> &#8211; Assign a default value when field_value is empty.</li>
<li><strong>title_position</strong> &#8211; Supported value: top, left, right, inline, hidden (default: top).</li>
<li><strong>description</strong> &#8211; Description of the field.</li>
<li><strong>meta_key</strong> &#8211; Should use only for extra fields.</li>
<li><strong>options</strong> &#8211; (string | array) Populate options for dropdown, checkbox and radio field.</li>
<li><strong>max_char</strong> &#8211; Allowed maximim character.</li>
<li><strong>field_size</strong> &#8211; Field size in pixel (e.g. 200px).</li>
<li><strong>before</strong> &#8211; Content before field.</li>
<li><strong>after</strong> &#8211; Content after field.</li>
</ul>
<ul>
<li><strong>required</strong> &#8211; Indicate field as required.</li>
<li><strong>unique</strong> &#8211; Indicate field as unique.</li>
<li><strong>admin_only</strong> &#8211; If set, the field is accessible only for admin.</li>
<li><strong>non_admin_only</strong> &#8211; Only viewable for non-admin</li>
<li><strong>read_only</strong> &#8211; If set, read only for all user.</li>
<li><strong>read_only_non_admin</strong> &#8211; If set, the field will be read only for non-admin user.</li>
</ul>
<ul>
<li><strong>css_class</strong> - Css class for field container.</li>
<li><strong>css_style</strong> - Inline css style for field container.</li>
<li><strong>input_id</strong> &#8211; Input id for field itself.</li>
<li><strong>field_class</strong> - Assign class to field itself.</li>
<li><strong>field_style</strong> - Assign inline css stye for field itself.</li>
<li><strong>label_id</strong> &#8211; Label ID.</li>
<li><strong>label_class</strong> &#8211; Assign class to field label.</li>
<li><strong>description_id</strong> - ID attribute for description paragraph.</li>
<li><strong>description_class</strong> &#8211; Assign class to field description.</li>
<li><strong>description_style</strong> &#8211; Assign inline css style for field description.</li>
</ul>
<p>Note: This filter hook is available since 1.1.3rc2</p>
<h3>Example:</h3>
<p><strong>Assign css class to field:</strong></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'user_meta_field_config'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'user_meta_field_config_function'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">3</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> user_meta_field_config_function<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #000088;">$fieldID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$formName</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>    
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$fieldID</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'Enter field id that you need to control'</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$field</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000088;">$field</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'field_class'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'class1 class2'</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$field</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

</p>
<p><strong>Use comma in option:</strong></p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'user_meta_field_config'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'user_meta_field_config_function'</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">3</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> user_meta_field_config_function<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$field</span><span style="color: #339933;">,</span> <span style="color: #000088;">$fieldID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$formName</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>        
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$fieldID</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'Your field id here'</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$field</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000088;">$field</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'options'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;yes=Yes, Agree, no=No, Disagree&quot;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$field</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Note: Use ascii code of comma where you want to appear it. <a href="http://www.asciitable.com/">asciitable</a></p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/filter-hooks/user_meta_field_config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom user registration by user meta</title>
		<link>http://user-meta.com/documentation/custom-user-registration-user-meta-pro/</link>
		<comments>http://user-meta.com/documentation/custom-user-registration-user-meta-pro/#comments</comments>
		<pubDate>Sun, 14 Oct 2012 13:43:58 +0000</pubDate>
		<dc:creator>khaledsaikat</dc:creator>
				<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=2286</guid>
		<description><![CDATA[To create custom user registration form with user meta, there are three steps: Steps 1. Fields Editor: Go to User Meta &#62;&#62; Fields Editor and choose the necessary fields. Configure field&#8217;s properties as needed. &#160; Step 2. Forms Editor: Go to User Meta &#62;&#62; Forms Editor and drag &#38; drop necessary fields to your form. (From [...]]]></description>
				<content:encoded><![CDATA[<p>To create custom user registration form with user meta, there are three steps:</p>
<p><strong>Steps 1. Fields Editor:</strong></p>
<p>Go to <strong>User Meta</strong> &gt;&gt; <strong>Fields Editor</strong> and choose the necessary fields. Configure field&#8217;s properties as needed.</p>
<div id="attachment_2257" class="wp-caption aligncenter" style="width: 650px"><a href="http://user-meta.com/wordpress-plugin-user-meta-pro-custom-profile-theme-extra-fields-meta-data/user-meta-fields-editor/" rel="attachment wp-att-2257"><img class="size-full wp-image-2257" title="User Mate Fields Editor" src="http://user-meta.com/files/2011/12/user-meta-fields-editor.png" alt="User Mate Fields Editor" width="640" height="591" /></a><p class="wp-caption-text">User Mate Fields Editor</p></div>
<p>&nbsp;</p>
<p><strong>Step 2. Forms Editor:</strong></p>
<p>Go to <strong>User Meta</strong> &gt;&gt; <strong>Forms Editor</strong> and drag &amp; drop necessary fields to your form.<strong> (From name is mandatory.*)</strong></p>
<div id="attachment_2287" class="wp-caption aligncenter" style="width: 650px"><a href="http://user-meta.com/custom-user-registration-user-meta/user-meta-forms-editor2/" rel="attachment wp-att-2287"><img class="size-full wp-image-2287" title="User Meta Forms Editor" src="http://user-meta.com/files/2012/10/user-meta-forms-editor2.png" alt="User Meta Forms Editor" width="640" height="677" /></a><p class="wp-caption-text">User Meta Forms Editor</p></div>
<p>&nbsp;</p>
<p><strong id="um_registration_shortcode">Step:03.  Write Shortcode to page or post:</strong></p>
<p>Write user-meta shortcode to page or post. To create page go to <strong>page</strong> &gt;&gt; <strong>add new</strong>.<br />
<img class="size-full wp-image-2282 alignleft" title="user-meta-shortcode" src="http://user-meta.com/files/2012/10/user-meta-shortcode.png" alt="" width="314" height="63" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_2288" class="wp-caption aligncenter" style="width: 650px"><a href="http://user-meta.com/custom-user-registration-user-meta/user-meta-registration-shortcode/" rel="attachment wp-att-2288"><img class="size-full wp-image-2288" title="User Meta registration shortcode" src="http://user-meta.com/files/2012/10/user-meta-registration-shortcode.png" alt="User Meta registration shortcode" width="640" height="388" /></a><p class="wp-caption-text">User Meta registration shortcode</p></div>
<ul>
<li><strong>type=&#8221;registration&#8221;</strong> for showing registration page.</li>
<li><strong>type=&#8221;both&#8221;</strong> for showing profile page if user loged in, or showing registration page, if not user loged in.</li>
</ul>
<p>&nbsp;</p>
<h3 id="um_registration_widget">User Registration Widget:</h3>
<p>User registration form can be shown as widget. Go to <strong>Appearance</strong> &gt;&gt; <strong>Widgets</strong> for available widgets. There will be new widget named <strong>User Meta Registration/Profile Form. </strong> This widget can be use for showing user registration form as widget. In widget configuration set your action type and form name.</p>
<div id="attachment_2271" class="wp-caption aligncenter" style="width: 277px"><a href="http://user-meta.com/custom-profile-user-meta-pro/user-meta-profile-registration-widget/" rel="attachment wp-att-2271"><img class="size-full wp-image-2271" title="Registration/Profile Widget" src="http://user-meta.com/files/2012/10/user-meta-profile-registration-widget.png" alt="Registration/Profile Widget" width="267" height="357" /></a><p class="wp-caption-text">Registration/Profile Widget settings</p></div>
<h3 id="um_registration_template_tag">User Registration Template Tag:</h3>
<p>Custom user profile can be use as template tag anywhere in your site.</p>
<p>&lt;?php</p>
<p>$actionType = &#8220;registration&#8221;;</p>
<p>$formName = &#8220;my_form2&#8243;;</p>
<p>echo userMetaProfileRegister( $actionType, $formName );</p>
<p>?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/documentation/custom-user-registration-user-meta-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom user profile by user meta</title>
		<link>http://user-meta.com/documentation/custom-profile-user-meta-pro/</link>
		<comments>http://user-meta.com/documentation/custom-profile-user-meta-pro/#comments</comments>
		<pubDate>Fri, 12 Oct 2012 15:25:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Documentation]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=2237</guid>
		<description><![CDATA[To create custom user profile with user meta, there are three steps: Steps 1. Fields Editor: Go to User Meta &#62;&#62; Fields Editor and choose the necessary fields. Configure field&#8217;s properties as needed. &#160; Step 2. Forms Editor: Go to User Meta &#62;&#62; Forms Editor and drag &#38; drop necessary fields to your form. (From name [...]]]></description>
				<content:encoded><![CDATA[<p>To create custom user profile with user meta, there are three steps:</p>
<p><strong>Steps 1. Fields Editor:</strong></p>
<p>Go to <strong>User Meta</strong> &gt;&gt; <strong>Fields Editor</strong> and choose the necessary fields. Configure field&#8217;s properties as needed.</p>
<div id="attachment_2257" class="wp-caption aligncenter" style="width: 650px"><a href="http://user-meta.com/wordpress-plugin-user-meta-pro-custom-profile-theme-extra-fields-meta-data/user-meta-fields-editor/" rel="attachment wp-att-2257"><img class="size-full wp-image-2257" title="User Mate Fields Editor" src="http://user-meta.com/files/2011/12/user-meta-fields-editor.png" alt="User Mate Fields Editor" width="640" height="591" /></a><p class="wp-caption-text">User Mate Fields Editor</p></div>
<p>&nbsp;</p>
<p><strong>Step 2. Forms Editor:</strong></p>
<p>Go to <strong>User Meta</strong> &gt;&gt; <strong>Forms Editor</strong> and drag &amp; drop necessary fields to your form.<strong> (From name is mandatory.*)</strong></p>
<div id="attachment_2259" class="wp-caption aligncenter" style="width: 650px"><a href="http://user-meta.com/wordpress-plugin-user-meta-pro-custom-profile-theme-extra-fields-meta-data/user-meta-forms-editor/" rel="attachment wp-att-2259"><img class="size-full wp-image-2259" title="User Meta Forms Editor" src="http://user-meta.com/files/2011/12/user-meta-forms-editor.png" alt="" width="640" height="670" /></a><p class="wp-caption-text">User Meta Forms Editor</p></div>
<p>&nbsp;</p>
<p><strong id="um_profile_shortcode">Step:03.  Write Shortcode to page or post:</strong></p>
<p>Write user-meta shortcode to page or post. To create page go to <strong>page</strong> &gt;&gt; <strong>add new</strong>.<br />
<img class="size-full wp-image-2282 alignleft" title="user-meta-shortcode" src="http://user-meta.com/files/2012/10/user-meta-shortcode.png" alt="" width="314" height="63" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div id="attachment_2260" class="wp-caption aligncenter" style="width: 650px"><a href="http://user-meta.com/wordpress-plugin-user-meta-pro-custom-profile-theme-extra-fields-meta-data/user-meta-profile-shortcode/" rel="attachment wp-att-2260"><img class="size-full wp-image-2260" title="User Meta Profile Shortcode" src="http://user-meta.com/files/2011/12/user-meta-profile-shortcode.png" alt="User Meta Profile Shortcode" width="640" height="388" /></a><p class="wp-caption-text">User Meta Profile Shortcode</p></div>
<ul>
<li><strong>type=&#8221;profile&#8221;</strong> for showing profile page.</li>
<li><strong>type=&#8221;none&#8221;</strong> for hiding update button.</li>
<li><strong>type=&#8221;both&#8221;</strong> for showing profile page if user loged in, or showing registration page, if not user loged in.</li>
</ul>
<p>&nbsp;</p>
<h3 id="um_profile_widget">User Profile Widget:</h3>
<p>User profile can be shown as widget. Go to <strong>Appearance</strong> &gt;&gt; <strong>Widgets</strong> for available widgets. There will be new widget named <strong>User Meta Registration/Profile Form. </strong> This widget can be use for showing user profile as widget. In widget configuration set your action type and form name.</p>
<div id="attachment_2271" class="wp-caption aligncenter" style="width: 277px"><a href="http://user-meta.com/custom-profile-user-meta-pro/user-meta-profile-registration-widget/" rel="attachment wp-att-2271"><img class="size-full wp-image-2271" title="Registration/Profile Widget" src="http://user-meta.com/files/2012/10/user-meta-profile-registration-widget.png" alt="Registration/Profile Widget" width="267" height="357" /></a><p class="wp-caption-text">Registration/Profile Widget settings</p></div>
<h3 id="um_profile_template_tag"></h3>
<h3></h3>
<h3>Profile Template Tag:</h3>
<p>Custom user profile can be use as template tag anywhere in your site.</p>
<p>&lt;?php</p>
<p>$actionType = &#8220;profile&#8221;;</p>
<p>$formName = &#8220;my_form&#8221;;</p>
<p>echo userMetaProfileRegister( $actionType, $formName );</p>
<p>?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/documentation/custom-profile-user-meta-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Admin approval, Verify email on registration. User activate / User deactivate.</title>
		<link>http://user-meta.com/features/wordpress-plugin-user-meta-pro-admin-approval-verify-email-registration-user-activate-deactivate/</link>
		<comments>http://user-meta.com/features/wordpress-plugin-user-meta-pro-admin-approval-verify-email-registration-user-activate-deactivate/#comments</comments>
		<pubDate>Mon, 07 May 2012 13:12:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Features]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=1175</guid>
		<description><![CDATA[Allow admin to approve user upon registration and activate or deactivate any user, any time. Also verify user email by sending the verification link. Meta User Pro can allow various types of confirmation  regarding registration of new user: User Activation User auto activation. (User will be activated automatically after registration) Need email verification. (A verification [...]]]></description>
				<content:encoded><![CDATA[<p>Allow admin to approve user upon registration and activate or deactivate any user, any time. Also verify user email by sending the verification link.</p>
<p>Meta User Pro can allow various types of confirmation  regarding registration of new user:</p>
<p><strong><label>User Activation</label></strong></p>
<p>User auto activation.<br />
<em>(User will be activated automatically after registration)</em></p>
<p>Need email verification.<br />
<em>(A verification link will be sent to user email. User must verify the link to activate their account)</em></p>
<p>Need admin approval.<br />
<em>(Admin needs to approve the new user)</em></p>
<p>Need both email verification and admin approval.<br />
<em>(A verification link will be sent to user email. User must verify the link to activate their account and an admin needs to approve the account)</em></p>
<p>To activate the features Go to <code style="background-color: #ccc;font-family: Consolas, Monaco, monospace">User Meta &gt;&gt; Settings &gt;&gt; Registration</code></p>
<p><img class="alignleft" style="border: 0px" src="http://i1266.photobucket.com/albums/jj530/moheimen/4WPSiteWordPress.png" alt="Photobucket" width="314" height="322" border="0" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>If Admin want to activate or deactivate any user simply go to Users tab on the left menu of WordPress, where all the users are listed then Admin can Activate or Deactivate any account of a particular user.</p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/features/wordpress-plugin-user-meta-pro-admin-approval-verify-email-registration-user-activate-deactivate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize backend user profile</title>
		<link>http://user-meta.com/features/wordpress-plugin-user-meta-pro-customize-backend-user-profile/</link>
		<comments>http://user-meta.com/features/wordpress-plugin-user-meta-pro-customize-backend-user-profile/#comments</comments>
		<pubDate>Mon, 07 May 2012 12:54:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Features]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=1169</guid>
		<description><![CDATA[User Meta Pro can help you to hide existing fields from backend user profile and add extra field to backend user profile . That is you can hide the fields in the backend for Subscriber; when a Subscriber checks his backend profile he will see some new fields created by you in his profile. Some [...]]]></description>
				<content:encoded><![CDATA[<p>User Meta Pro can help you to hide existing fields from backend user profile and add extra field to backend user profile . That is you can hide the fields in the backend for Subscriber; when a Subscriber checks his backend profile he will see some new fields created by you in his profile. Some of the common fileds are Admin Color Scheme, Username, First Name, Last Name, Nick Name etc.</p>
<p><em>To change fields in the</em> Go to <code style="background-color: #ccc;font-family: Consolas, Monaco, monospace">User Meta &gt;&gt; Settings &gt;&gt; Backend Profile</code><br />
<img class="alignleft" style="border: 0px" src="http://i1266.photobucket.com/albums/jj530/moheimen/ProfileAWSWPSiteWordPress2012-05-2617-51-29.png" alt="Photobucket" width="818" height="399" border="0" /><br />
As you can see in the picture below the fields can be changed into new fields like Avatar, Which City?, bio data doc file, Gender, Customized text input etc and many other CUSTOM FIELDS can be added too. Adding custom fields will increase the quality of our site for the Users in your site serving them with wide range of flexibility.<img class="alignleft" style="border: 0px" src="http://i1266.photobucket.com/albums/jj530/moheimen/ProfileAWSWPjSiteWordPress2012-05-2618-05-22.png" alt="Photobucket" width="520" height="329" border="0" /></p>
<h3 style="text-align: right"></h3>
<hr />
<h2 style="text-align: right"><span style="color: #888888">Adding Extra Fields</span></h2>
<p><em>(if you do not know) the fields you are adding in the backend will definately show some value against it  for example in the Avatar field you need to put a picture of the Subscriber so its better for you(Admin) to put the Avatar Field in the Registration Form so the Subscriber can upload the picture during the Registration process and the corresponding picture will show up in the Avatar. </em></p>
<p><strong>If you do not know how to add <em>Custom Fields: </em></strong>Follow this steps</p>
<p>1) Go to <code style="background-color: #ccc;font-family: Consolas, Monaco, monospace">User Meta &gt;&gt; Fields Editor</code><br />
<img class="alignleft" style="border: 0px" src="http://i1266.photobucket.com/albums/jj530/moheimen/UserMetaFieldsEditllorAWSWPSiteWordPress.png" alt="Photobucket" width="716" height="273" border="0" /><br />
On the right side you can see <em>Extra Fields</em>, click your desired field for example if you click <em>Country</em> a Field <em>Country</em> will appear, to see it scroll down and  manage all the features<em> Country Field</em> offers and this is it your <em>New Field Country</em> is created.</p>
<hr />
<h3 style="text-align: right"><span style="color: #999999"><strong>Customizing backend user profile</strong></span><br />
<span style="color: #c0c0c0">Adding <span style="text-decoration: underline"><strong><em>Country</em></strong></span> as <span style="text-decoration: underline">Custom Field</span> in the backend</span></h3>
<p>Go to <code style="background-color: #ccc;font-family: Consolas, Monaco, monospace">User Meta &gt;&gt; Settings &gt;&gt; Backend Profile</code> then click on the newly created Field <strong><em>Country </em></strong>then drag and drop to the left as seen in the picture below. Refresh the backend profile you can see Country as a new field. If you want to add any Field follow the steps above like <em>country</em> it is as simple as that.<br />
<img class="alignleft" style="border: 0px" src="http://i1266.photobucket.com/albums/jj530/moheimen/WPSiteWordPress.png" alt="Photobucket" width="486" height="371" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/features/wordpress-plugin-user-meta-pro-customize-backend-user-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modify default email sender&#8217;s information</title>
		<link>http://user-meta.com/features/wordpress-plugin-user-meta-pro-modify-default-email-senders-information/</link>
		<comments>http://user-meta.com/features/wordpress-plugin-user-meta-pro-modify-default-email-senders-information/#comments</comments>
		<pubDate>Mon, 07 May 2012 11:00:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Features]]></category>

		<guid isPermaLink="false">http://user-meta.com/?p=1165</guid>
		<description><![CDATA[Let your WordPress user get email from your chosen name and email instead off WordPress default email address. Also change email format from plain text to html and include your html with email. That is when a an E-mail is sent from your site regarding registration process you can change the content and the &#8220;Delivered E-mail [...]]]></description>
				<content:encoded><![CDATA[<p>Let your WordPress user get email from your chosen name and email instead off WordPress default email address. Also change email format from plain text to html and include your html with email. That is when a an E-mail is sent from your site regarding registration process you can change the content and the &#8220;Delivered E-mail address&#8221; to your own E-mail address. This goes same with:</p>
<p><strong><label>From Name</label></strong></p>
<p><strong><label>From E-mail</label></strong></p>
<p><strong><label>E-mail Format</label></strong></p>
<p><strong>Subject</strong></p>
<p><strong><label>Body</label></strong></p>
<p>Each and everything is customize able and this is that simple. For More Details see <span style="color: #ff6600"><a title="Customize email notification" href="http://user-meta.com/wordpress-plugin-user-meta-pro-customize-ruser-egistration-activation-deactivation-verification-email-notification/" rel="bookmark"><span style="color: #ff6600">Customize email notification</span></a></span></p>
<p><img src="http://i1266.photobucket.com/albums/jj530/moheimen/E-mailNotifica3tionAWSWPSiteWordPress.png" alt="Photobucket" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://user-meta.com/features/wordpress-plugin-user-meta-pro-modify-default-email-senders-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
