<?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 for StylesFirst.com</title>
	<atom:link href="http://www.stylesfirst.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stylesfirst.com</link>
	<description>Designing &#38; Developing in the front-end</description>
	<lastBuildDate>Thu, 29 Dec 2011 07:34:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Removal of username field at wordpress register page by Adrian</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-506</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Thu, 29 Dec 2011 07:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-506</guid>
		<description>What I did was hook into the &#039;login_form_register&#039; action, which runs before the $_POST variable is called and made the $_POST[&#039;user_login&#039;] equal to $_POST[&#039;user_email&#039;].

$_POST[&#039;user_login&#039;] is then sanitised and processed as if it were a username.

function make_username_email() {
$_POST[&#039;user_login&#039;] = $_POST[&#039;user_email&#039;];
}

add_action( &#039;login_form_register&#039; ,&#039;make_username_email&#039; );</description>
		<content:encoded><![CDATA[<p>What I did was hook into the &#8216;login_form_register&#8217; action, which runs before the $_POST variable is called and made the $_POST['user_login'] equal to $_POST['user_email'].</p>
<p>$_POST['user_login'] is then sanitised and processed as if it were a username.</p>
<p>function make_username_email() {<br />
$_POST['user_login'] = $_POST['user_email'];<br />
}</p>
<p>add_action( &#8216;login_form_register&#8217; ,&#8217;make_username_email&#8217; );</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Easy show &amp; hide with jQuery by Jeff</title>
		<link>http://www.stylesfirst.com/coding/easy-show-hide-with-jquery/#comment-504</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Tue, 08 Nov 2011 23:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=114#comment-504</guid>
		<description>Couldn&#039;t get this to work....how about having the JavaScript above the example might help newbies like me</description>
		<content:encoded><![CDATA[<p>Couldn&#8217;t get this to work&#8230;.how about having the JavaScript above the example might help newbies like me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 9 amazing morning coffees in Melbourne CBD by alex</title>
		<link>http://www.stylesfirst.com/culture/9-amazing-morning-coffees-in-melbourne-cbd/#comment-500</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sat, 15 Oct 2011 02:56:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=140#comment-500</guid>
		<description>Thanks! 
To be honest, I always have cappuccinos as I&#039;m a fairly conservative coffee drinker.</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
To be honest, I always have cappuccinos as I&#8217;m a fairly conservative coffee drinker.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 9 amazing morning coffees in Melbourne CBD by DM</title>
		<link>http://www.stylesfirst.com/culture/9-amazing-morning-coffees-in-melbourne-cbd/#comment-499</link>
		<dc:creator>DM</dc:creator>
		<pubDate>Sat, 15 Oct 2011 02:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=140#comment-499</guid>
		<description>nice intro to some interesting places. nice photos too!
what coffee do you usually order for comparison?</description>
		<content:encoded><![CDATA[<p>nice intro to some interesting places. nice photos too!<br />
what coffee do you usually order for comparison?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removal of username field at wordpress register page by Elle</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-466</link>
		<dc:creator>Elle</dc:creator>
		<pubDate>Thu, 22 Sep 2011 07:22:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-466</guid>
		<description>How would you go about implementing it this way? Did you do another post explaining it?  I would rather set their usernames to be a copy of their email address if it can be done?
Thanks</description>
		<content:encoded><![CDATA[<p>How would you go about implementing it this way? Did you do another post explaining it?  I would rather set their usernames to be a copy of their email address if it can be done?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress featured image slider without a plugin by alex</title>
		<link>http://www.stylesfirst.com/coding/wordpress-featured-image-slider-without-a-plugin/#comment-452</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Sun, 18 Sep 2011 22:21:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=167#comment-452</guid>
		<description>Hi Allin,

If you create a featured image (using post_thumbnail), you can set the exact dimensions of the image so you won&#039;t need to scale the image size down.

E.g: add_image_size( &#039;slider-image&#039;, 200, 200, true ); will create a featured image 200px x 200px in size so you can fit it exactly into your slider.

Hope that helps.</description>
		<content:encoded><![CDATA[<p>Hi Allin,</p>
<p>If you create a featured image (using post_thumbnail), you can set the exact dimensions of the image so you won&#8217;t need to scale the image size down.</p>
<p>E.g: add_image_size( &#8216;slider-image&#8217;, 200, 200, true ); will create a featured image 200px x 200px in size so you can fit it exactly into your slider.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress featured image slider without a plugin by Allin</title>
		<link>http://www.stylesfirst.com/coding/wordpress-featured-image-slider-without-a-plugin/#comment-450</link>
		<dc:creator>Allin</dc:creator>
		<pubDate>Sun, 18 Sep 2011 20:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=167#comment-450</guid>
		<description>Hi Alex, I don&#039;t get it up on my blog, would you add some details and with some images should be the best to noob like me...

I also need to know how to make it scaled (add thumbnail size on slider image in preferred dimension)...so the pagespeed.googlelabs won&#039;t show that advice...&quot;serve scaled images&quot;

thanks :)</description>
		<content:encoded><![CDATA[<p>Hi Alex, I don&#8217;t get it up on my blog, would you add some details and with some images should be the best to noob like me&#8230;</p>
<p>I also need to know how to make it scaled (add thumbnail size on slider image in preferred dimension)&#8230;so the pagespeed.googlelabs won&#8217;t show that advice&#8230;&#8221;serve scaled images&#8221;</p>
<p>thanks <img src='http://www.stylesfirst.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress featured image slider without a plugin by Rafael Trabasso</title>
		<link>http://www.stylesfirst.com/coding/wordpress-featured-image-slider-without-a-plugin/#comment-426</link>
		<dc:creator>Rafael Trabasso</dc:creator>
		<pubDate>Thu, 08 Sep 2011 13:54:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=167#comment-426</guid>
		<description>Nice tut.
I am not going to implement it 100% like shown here, but I understood what to do to get my post thumbnails into a Jquery slider. 
Without a plugin, that makes me specially happy. : )</description>
		<content:encoded><![CDATA[<p>Nice tut.<br />
I am not going to implement it 100% like shown here, but I understood what to do to get my post thumbnails into a Jquery slider.<br />
Without a plugin, that makes me specially happy. : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing the url field from wordPress comments form by Evaline</title>
		<link>http://www.stylesfirst.com/coding/removing-the-url-field-from-wordpress-comments-form/#comment-369</link>
		<dc:creator>Evaline</dc:creator>
		<pubDate>Sun, 14 Aug 2011 05:51:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.stylesfirst.com/?p=361#comment-369</guid>
		<description>That&#039;s really srhwed! Good to see the logic set out so well.</description>
		<content:encoded><![CDATA[<p>That&#8217;s really srhwed! Good to see the logic set out so well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removal of username field at wordpress register page by Artur</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-208</link>
		<dc:creator>Artur</dc:creator>
		<pubDate>Fri, 17 Jun 2011 06:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-208</guid>
		<description>Hello!!

Thank you very much for this tutorial. 

I came with idea that it would be better to generate usernames from random numbers than letters.

When users go to their profile pages and they will see that their login consists of random letters they might think that it is some kind of error in the system.

But if they see random numbers they will not be so confused about this - we are numbers in this world, so it&#039;s easier to understand that my user name is just some numbers.

Second thing is that in Wordpress 3.1 i can&#039;t find user name input field in wp-register.php</description>
		<content:encoded><![CDATA[<p>Hello!!</p>
<p>Thank you very much for this tutorial. </p>
<p>I came with idea that it would be better to generate usernames from random numbers than letters.</p>
<p>When users go to their profile pages and they will see that their login consists of random letters they might think that it is some kind of error in the system.</p>
<p>But if they see random numbers they will not be so confused about this &#8211; we are numbers in this world, so it&#8217;s easier to understand that my user name is just some numbers.</p>
<p>Second thing is that in WordPress 3.1 i can&#8217;t find user name input field in wp-register.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing the url field from wordPress comments form by tag heuer aquaracer mujer</title>
		<link>http://www.stylesfirst.com/coding/removing-the-url-field-from-wordpress-comments-form/#comment-188</link>
		<dc:creator>tag heuer aquaracer mujer</dc:creator>
		<pubDate>Fri, 10 Jun 2011 23:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.stylesfirst.com/?p=361#comment-188</guid>
		<description>Nice and thanks!</description>
		<content:encoded><![CDATA[<p>Nice and thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removal of username field at wordpress register page by esteban</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-164</link>
		<dc:creator>esteban</dc:creator>
		<pubDate>Thu, 02 Jun 2011 10:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-164</guid>
		<description>Nice ideas.

How could i do it here?

 
                    
                    &lt;input type=&quot;text&quot; class=&quot;text&quot; tabindex=&quot;2&quot; name=&quot;your_email&quot; id=&quot;your_email&quot; value=&quot;&quot; /&gt;
                
				
				               
                    
                    &lt;input type=&quot;hidden&quot; class=&quot;text&quot; tabindex=&quot;1&quot; name=&quot;your_username&quot; id=&quot;your_username&quot; value=&quot;&quot; /&gt;
                </description>
		<content:encoded><![CDATA[<p>Nice ideas.</p>
<p>How could i do it here?</p>
<p>                    &lt;input type=&quot;text&quot; class=&quot;text&quot; tabindex=&quot;2&quot; name=&quot;your_email&quot; id=&quot;your_email&quot; value=&quot;&#8221; /&gt;</p>
<p>                    &lt;input type=&quot;hidden&quot; class=&quot;text&quot; tabindex=&quot;1&quot; name=&quot;your_username&quot; id=&quot;your_username&quot; value=&quot;&#8221; /&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removal of username field at wordpress register page by MG1</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-162</link>
		<dc:creator>MG1</dc:creator>
		<pubDate>Wed, 01 Jun 2011 18:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-162</guid>
		<description>How do you avoid getting ERROR: The username field is empty?</description>
		<content:encoded><![CDATA[<p>How do you avoid getting ERROR: The username field is empty?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removal of username field at wordpress register page by alex</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-52</link>
		<dc:creator>alex</dc:creator>
		<pubDate>Tue, 04 Jan 2011 00:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-52</guid>
		<description>Good point Niccolo, and probably more obvious than my initial method.
Thanks for the tip.</description>
		<content:encoded><![CDATA[<p>Good point Niccolo, and probably more obvious than my initial method.<br />
Thanks for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removal of username field at wordpress register page by Niccolo Favari</title>
		<link>http://www.stylesfirst.com/coding/removal-of-username-at-wordpress-register-page/#comment-51</link>
		<dc:creator>Niccolo Favari</dc:creator>
		<pubDate>Mon, 03 Jan 2011 13:31:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.alexbarnettdesign.com/?p=257#comment-51</guid>
		<description>Then why don&#039;t you just copy, maybe with an action hooked into the &quot;init&quot;, the user_email POST field into the user_login field (having it sanitized beforehand) and just leave users with their usernames == emails?</description>
		<content:encoded><![CDATA[<p>Then why don&#8217;t you just copy, maybe with an action hooked into the &#8220;init&#8221;, the user_email POST field into the user_login field (having it sanitized beforehand) and just leave users with their usernames == emails?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

