<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Custom WordPress Registration Pages (v 0.1.7)</title>
	<atom:link href="http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/</link>
	<description>Wordpress/PHP Developer</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:22:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Mike</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6646</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 06 Feb 2012 17:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6646</guid>
		<description>Phillip, the only thing I can think of would be a conflict with some other plugin that was trying to save data to those fields. But I&#039;d be happy to take a look if you will email a login to your system. My email it mike{AT}mikevanwinkle.com.</description>
		<content:encoded><![CDATA[<p>Phillip, the only thing I can think of would be a conflict with some other plugin that was trying to save data to those fields. But I&#8217;d be happy to take a look if you will email a login to your system. My email it mike{AT}mikevanwinkle.com.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phillip</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6644</link>
		<dc:creator>Phillip</dc:creator>
		<pubDate>Sun, 05 Feb 2012 23:21:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6644</guid>
		<description>WOW! Thanks for this plugin. I&#039;ve successfully added several fields assigning post variables, userdata variables and the form variables. However some of the data is being pushed to the database while others are not.
First Name
Last Name
Business Name
Zip Code are not being saved
While:
User name
address
city
state
Website
password 
all are being saved. 
I duplicated the process for all additional fields.  

Any ideas?

Thanks again</description>
		<content:encoded><![CDATA[<p>WOW! Thanks for this plugin. I&#8217;ve successfully added several fields assigning post variables, userdata variables and the form variables. However some of the data is being pushed to the database while others are not.<br />
First Name<br />
Last Name<br />
Business Name<br />
Zip Code are not being saved<br />
While:<br />
User name<br />
address<br />
city<br />
state<br />
Website<br />
password<br />
all are being saved.<br />
I duplicated the process for all additional fields.  </p>
<p>Any ideas?</p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6635</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 01 Feb 2012 17:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6635</guid>
		<description>Hi Mike,
Thanks for that. I suspected this would need jquery which I don&#039;t know. I&#039;ll have a go anyway and see how I get on. Out of interest, how much would you charge for this ?</description>
		<content:encoded><![CDATA[<p>Hi Mike,<br />
Thanks for that. I suspected this would need jquery which I don&#8217;t know. I&#8217;ll have a go anyway and see how I get on. Out of interest, how much would you charge for this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Van Winkle</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6634</link>
		<dc:creator>Mike Van Winkle</dc:creator>
		<pubDate>Wed, 01 Feb 2012 17:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6634</guid>
		<description>Sorry Ian, you&#039;ll need to know some jQuery here. Here&#039;s a general model for you but there are a lot of contingencies. I&#039;m happy to handle it for you for a fee. Cheers,  

&lt;pre class=&quot;brush:javascript&quot;&gt;
jQuery(function() {
   jQuery(&#039;#OTHERFIELD&#039;).hide();
   jQuery(&#039;#SELECTFIELD&#039;).change(function() {
      var value = jQuery(this).val();
      if(value == &#039;Other&#039;) {
         jQuery(&#039;#OTHERFIELD&#039;).slideToggle();
      }
   });
});
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Sorry Ian, you&#8217;ll need to know some jQuery here. Here&#8217;s a general model for you but there are a lot of contingencies. I&#8217;m happy to handle it for you for a fee. Cheers,  </p>
<pre class="brush:javascript">
jQuery(function() {
   jQuery('#OTHERFIELD').hide();
   jQuery('#SELECTFIELD').change(function() {
      var value = jQuery(this).val();
      if(value == 'Other') {
         jQuery('#OTHERFIELD').slideToggle();
      }
   });
});
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6633</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 01 Feb 2012 10:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6633</guid>
		<description>Thanks Mike, works a treat. All I need to do now is be able to hide the &#039;Other&#039; field unless &#039;Other (please specify)&#039; is selected. Any pointers on this ?</description>
		<content:encoded><![CDATA[<p>Thanks Mike, works a treat. All I need to do now is be able to hide the &#8216;Other&#8217; field unless &#8216;Other (please specify)&#8217; is selected. Any pointers on this ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Van Winkle</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6632</link>
		<dc:creator>Mike Van Winkle</dc:creator>
		<pubDate>Tue, 31 Jan 2012 17:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6632</guid>
		<description>Ian, you&#039;ll need to know a bit of PHP to make this happen but it is definitely possible. You should check out the article on &quot;Custom Validation&quot; &lt;a href=&quot;http://www.mikevanwinkle.com/simplr-registration-forms-plus/usage/custom-validation&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.

Your function would look something like this:

&lt;pre class=&quot;brush:php&quot;&gt;

function custom_reg_validation($errors) {
   if( isset($_POST[&#039;field_1&#039;]) AND $_POST[&#039;field_1&#039;] == &#039;other&#039; ) { 
      if(!isset($_POST[&#039;field_2&#039;]) OR $_POST[&#039;field_2&#039;] == &#039;&#039; ) {
         $errors[] = &quot;Please enter a value for OTHER FIELD&quot;;
      }
   }
   return $errors; 
}

&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Ian, you&#8217;ll need to know a bit of PHP to make this happen but it is definitely possible. You should check out the article on &#8220;Custom Validation&#8221; <a href="http://www.mikevanwinkle.com/simplr-registration-forms-plus/usage/custom-validation" rel="nofollow">here</a>.</p>
<p>Your function would look something like this:</p>
<pre class="brush:php">

function custom_reg_validation($errors) {
   if( isset($_POST['field_1']) AND $_POST['field_1'] == 'other' ) {
      if(!isset($_POST['field_2']) OR $_POST['field_2'] == '' ) {
         $errors[] = "Please enter a value for OTHER FIELD";
      }
   }
   return $errors;
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6631</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Tue, 31 Jan 2012 17:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6631</guid>
		<description>Hi Mike, one of my fields is a multiple choice select box and the client wants one of the options to be &#039;Other (please specify)&#039;. This is a required field. Do you know how to implement such a scenario in which I can ensure the &#039;Other&#039; field is filled if the &#039;Other (please specify)&#039; option is selected ?</description>
		<content:encoded><![CDATA[<p>Hi Mike, one of my fields is a multiple choice select box and the client wants one of the options to be &#8216;Other (please specify)&#8217;. This is a required field. Do you know how to implement such a scenario in which I can ensure the &#8216;Other&#8217; field is filled if the &#8216;Other (please specify)&#8217; option is selected ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6628</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 30 Jan 2012 16:06:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6628</guid>
		<description>Perfect!
Thanks Mike.</description>
		<content:encoded><![CDATA[<p>Perfect!<br />
Thanks Mike.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Van Winkle</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6627</link>
		<dc:creator>Mike Van Winkle</dc:creator>
		<pubDate>Mon, 30 Jan 2012 15:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6627</guid>
		<description>That would be a little trickier to handle with css alone. I&#039;ll have to look into it.</description>
		<content:encoded><![CDATA[<p>That would be a little trickier to handle with css alone. I&#8217;ll have to look into it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Van Winkle</title>
		<link>http://www.mikevanwinkle.com/wordpress/custom-wordpress-registration-page/comment-page-2/#comment-6626</link>
		<dc:creator>Mike Van Winkle</dc:creator>
		<pubDate>Mon, 30 Jan 2012 15:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mikevanwinkle.com/?p=394#comment-6626</guid>
		<description>You should be able to just do something like 

#simplr-reg input {
   width:100%;
}</description>
		<content:encoded><![CDATA[<p>You should be able to just do something like </p>
<p>#simplr-reg input {<br />
   width:100%;<br />
}</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Object Caching 485/507 objects using apc

Served from: www.mikevanwinkle.com @ 2012-02-09 21:26:51 -->
