<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for WPCanada</title>
	
	<link>http://wpcanada.ca</link>
	<description>in the great white north</description>
	<lastBuildDate>Mon, 06 Feb 2012 04:34:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CommentsForWordpressCanada" /><feedburner:info uri="commentsforwordpresscanada" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><item>
		<title>Comment on WordPress 3.3.1 Released by Nitin Reddy Katkam</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/s53gChejJzg/</link>
		<dc:creator>Nitin Reddy Katkam</dc:creator>
		<pubDate>Mon, 06 Feb 2012 04:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2928#comment-1595</guid>
		<description>The manual upgrade has always worked flawlessly for me too. It's the automatic upgrade that usually times out or causes other problems.</description>
		<content:encoded><![CDATA[<p>The manual upgrade has always worked flawlessly for me too. It's the automatic upgrade that usually times out or causes other problems.</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/s53gChejJzg" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2012/wordpress-3-3-1-released/#comment-1595</feedburner:origLink></item>
	<item>
		<title>Comment on Plugin Review: WP Deals by WPDeals is Being Reviewed | WP Deals</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/GqYXmx9lsbU/</link>
		<dc:creator>WPDeals is Being Reviewed | WP Deals</dc:creator>
		<pubDate>Tue, 31 Jan 2012 11:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2960#comment-1571</guid>
		<description>[...] you really want to choose us as our plugin, it really is not a waste time to see their review first here. They mentioned WPDeals as a simple yet awesome plugin for start running a deals-type [...]</description>
		<content:encoded><![CDATA[<p>[...] you really want to choose us as our plugin, it really is not a waste time to see their review first here. They mentioned WPDeals as a simple yet awesome plugin for start running a deals-type [...]</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/GqYXmx9lsbU" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2012/plugin-review-wp-deals/#comment-1571</feedburner:origLink></item>
	<item>
		<title>Comment on Pagination In a Post by Len Kutchma</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/S_8b_DZco0c/</link>
		<dc:creator>Len Kutchma</dc:creator>
		<pubDate>Sat, 21 Jan 2012 04:49:03 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2626#comment-1529</guid>
		<description>Hi Affan,

This should already work with Genesis. The wp_link_pages() function is built-in to WordPress. Are you asking how to adjust the appearance of the output? If so here's how ...

If you're using Genesis and you add the &lt;!--nextpage--&gt; tag to your post, view the source code of the post. You will see that Genesis adds a class "pages" to the paragraph tag. It should look something like ... 
&lt;p class="pages"&gt;

Armed with that tidbit we can target that selector in our style sheet. To mimic the appearance of Twenty Ten you could add something like this ...

&lt;pre&gt;.pages {
	clear: both;
	color: #000;
	font-weight: bold;
	margin: 0 0 22px 0;
	word-spacing: 0.5em;
}

.pages a:link,
.pages a:visited {
	background: #f1f1f1;
	color: #333;
	font-weight: normal;
	padding: 0.5em 0.75em;
	text-decoration: none;
}

.pages a:active,
.pages a:hover {
	color: #ff4b33;
}&lt;/pre&gt;

Play around with the styles until you get the look you want.</description>
		<content:encoded><![CDATA[<p>Hi Affan,</p>
<p>This should already work with Genesis. The wp_link_pages() function is built-in to WordPress. Are you asking how to adjust the appearance of the output? If so here's how ...</p>
<p>If you're using Genesis and you add the &lt;!--nextpage--&gt; tag to your post, view the source code of the post. You will see that Genesis adds a class "pages" to the paragraph tag. It should look something like ...<br />
&lt;p class="pages"&gt;</p>
<p>Armed with that tidbit we can target that selector in our style sheet. To mimic the appearance of Twenty Ten you could add something like this ...</p>
<pre>.pages {
	clear: both;
	color: #000;
	font-weight: bold;
	margin: 0 0 22px 0;
	word-spacing: 0.5em;
}

.pages a:link,
.pages a:visited {
	background: #f1f1f1;
	color: #333;
	font-weight: normal;
	padding: 0.5em 0.75em;
	text-decoration: none;
}

.pages a:active,
.pages a:hover {
	color: #ff4b33;
}</pre>
<p>Play around with the styles until you get the look you want.</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/S_8b_DZco0c" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2011/pagination-in-a-post/#comment-1529</feedburner:origLink></item>
	<item>
		<title>Comment on Pagination In a Post by Affan Ruslan</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/sy3ka1BV_I4/</link>
		<dc:creator>Affan Ruslan</dc:creator>
		<pubDate>Sat, 21 Jan 2012 03:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2626#comment-1527</guid>
		<description>I hope this can be implemented on genesis too.
Any ideas on how to tweak the child theme to use this function?</description>
		<content:encoded><![CDATA[<p>I hope this can be implemented on genesis too.<br />
Any ideas on how to tweak the child theme to use this function?</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/sy3ka1BV_I4" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2011/pagination-in-a-post/#comment-1527</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress 3.3.1 Released by Len Kutchma</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/9Z_rlh6JKRc/</link>
		<dc:creator>Len Kutchma</dc:creator>
		<pubDate>Mon, 09 Jan 2012 03:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2928#comment-1512</guid>
		<description>Hi there,

Unfortunately there are no guarantees, especially when it comes to software. Having said that, I've been using WordPress for several years and in that time have performed dozens of upgrades to not only my sites but the sites of other people and have never had a problem. I normally go the manual upgrade route.</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>Unfortunately there are no guarantees, especially when it comes to software. Having said that, I've been using WordPress for several years and in that time have performed dozens of upgrades to not only my sites but the sites of other people and have never had a problem. I normally go the manual upgrade route.</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/9Z_rlh6JKRc" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2012/wordpress-3-3-1-released/#comment-1512</feedburner:origLink></item>
	<item>
		<title>Comment on WordPress 3.3.1 Released by Nitin Reddy Katkam</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/Bq6PajqPQlo/</link>
		<dc:creator>Nitin Reddy Katkam</dc:creator>
		<pubDate>Sun, 08 Jan 2012 10:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2928#comment-1511</guid>
		<description>Updating to WordPress 3.3.1 is not necessarily an easy upgrade. Sometimes the upgrade fails mid-way like it did for me and needs a manual recovery. Sometimes, WordPress doesn't even see the upgrade for some reason. I blogged about my less-than-stellar experience with the WordPress automatic upgrade with screenshots at http://www.n4express.com/blog/?p=305</description>
		<content:encoded><![CDATA[<p>Updating to WordPress 3.3.1 is not necessarily an easy upgrade. Sometimes the upgrade fails mid-way like it did for me and needs a manual recovery. Sometimes, WordPress doesn't even see the upgrade for some reason. I blogged about my less-than-stellar experience with the WordPress automatic upgrade with screenshots at <a href="http://www.n4express.com/blog/?p=305" rel="nofollow">http://www.n4express.com/blog/?p=305</a></p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/Bq6PajqPQlo" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2012/wordpress-3-3-1-released/#comment-1511</feedburner:origLink></item>
	<item>
		<title>Comment on BlogNews Child Theme by BlogNews Theme Updated v1.2 » WPCanada</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/yg-A0FOK4a8/</link>
		<dc:creator>BlogNews Theme Updated v1.2 » WPCanada</dc:creator>
		<pubDate>Tue, 03 Jan 2012 10:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?page_id=2856#comment-1508</guid>
		<description>[...] more info including demo and download links head over to the BlogNews theme page.   Filed Under: Theme Releases    About Len KutchmaLen has been blogging for over 10 years and is a [...]</description>
		<content:encoded><![CDATA[<p>[...] more info including demo and download links head over to the BlogNews theme page.   Filed Under: Theme Releases    About Len KutchmaLen has been blogging for over 10 years and is a [...]</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/yg-A0FOK4a8" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/our-themes/blognews/#comment-1508</feedburner:origLink></item>
	<item>
		<title>Comment on Free Genesis Child Themes by Free Genesis Child Themes » WPCanada</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/3R5pZAlh-ms/</link>
		<dc:creator>Free Genesis Child Themes » WPCanada</dc:creator>
		<pubDate>Mon, 26 Dec 2011 09:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?page_id=2863#comment-1506</guid>
		<description>[...] http://wpcanada.ca/free-genesis-child-themes/   Filed Under: Uncategorized Tagged With: wordpress [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://wpcanada.ca/free-genesis-child-themes/" rel="nofollow">http://wpcanada.ca/free-genesis-child-themes/</a>   Filed Under: Uncategorized Tagged With: wordpress [...]</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/3R5pZAlh-ms" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/free-genesis-child-themes/#comment-1506</feedburner:origLink></item>
	<item>
		<title>Comment on Plugin Review: Grunion Contact Form by Len Kutchma</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/KBFQLkKczX8/</link>
		<dc:creator>Len Kutchma</dc:creator>
		<pubDate>Fri, 23 Dec 2011 23:30:17 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2510#comment-1505</guid>
		<description>Hi Roy

I've never seen this behaviour. The message should be sent to the email address you specified. It sounds as if something is interfering but I have no idea what that might be. I would suggest posting this in the WordPress forum as someone else may have already come across this.</description>
		<content:encoded><![CDATA[<p>Hi Roy</p>
<p>I've never seen this behaviour. The message should be sent to the email address you specified. It sounds as if something is interfering but I have no idea what that might be. I would suggest posting this in the WordPress forum as someone else may have already come across this.</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/KBFQLkKczX8" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2011/plugin-review-grunion-contact-form/#comment-1505</feedburner:origLink></item>
	<item>
		<title>Comment on Plugin Review: Grunion Contact Form by roy</title>
		<link>http://feedproxy.google.com/~r/CommentsForWordpressCanada/~3/xMeoDLcGvKg/</link>
		<dc:creator>roy</dc:creator>
		<pubDate>Tue, 20 Dec 2011 23:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://wpcanada.ca/?p=2510#comment-1504</guid>
		<description>Hi there! This is a great plug-in but I’m having trouble with one thing. I have a Grunion contact form on another page of my site, and when someone uses it to send me a message, the contents of the message (including the sender’s name and email) are posted to my website! How can I stop this? I have it set up to not integrate comments, but I’m guessing a contact form is being treated as a unique post rather than a comment. Thanks!

it look like this:

Message Sent

Name: special rent
Email: info@r2osoon.com
Website: http://ff
Comment: ff
New Field: f</description>
		<content:encoded><![CDATA[<p>Hi there! This is a great plug-in but I’m having trouble with one thing. I have a Grunion contact form on another page of my site, and when someone uses it to send me a message, the contents of the message (including the sender’s name and email) are posted to my website! How can I stop this? I have it set up to not integrate comments, but I’m guessing a contact form is being treated as a unique post rather than a comment. Thanks!</p>
<p>it look like this:</p>
<p>Message Sent</p>
<p>Name: special rent<br />
Email: <a href="mailto:info@r2osoon.com">info@r2osoon.com</a><br />
Website: <a href="http://ff" rel="nofollow">http://ff</a><br />
Comment: ff<br />
New Field: f</p>
<img src="http://feeds.feedburner.com/~r/CommentsForWordpressCanada/~4/xMeoDLcGvKg" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://wpcanada.ca/2011/plugin-review-grunion-contact-form/#comment-1504</feedburner:origLink></item>
</channel>
</rss>

