<?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 Andrew Trivette Design</title>
	<atom:link href="http://andrewtrivette.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewtrivette.com</link>
	<description>Affordable, Professional Websites</description>
	<lastBuildDate>Sat, 12 May 2012 14:27:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on How To Add a Pinterest Pin to a Magento Go Website by Andrew Trivette</title>
		<link>http://andrewtrivette.com/2012/04/adding-a-pinterest-pin-to-a-magento-go-website/#comment-37</link>
		<dc:creator>Andrew Trivette</dc:creator>
		<pubDate>Sat, 12 May 2012 14:27:56 +0000</pubDate>
		<guid isPermaLink="false">http://andrewtrivette.com/?p=342#comment-37</guid>
		<description>Jason,
In my theme I was pulling the image url from the link wrapped around the image because the link referenced a larger higher quality image for Pinterest&#039;s use. If I was trying to pull from the img itself, then you&#039;re correct, it would have needed to pull the src attribute.
Because every themes implements images differently, everyone will have to alter the code to match their theme.
Andrew</description>
		<content:encoded><![CDATA[<p>Jason,<br />
In my theme I was pulling the image url from the link wrapped around the image because the link referenced a larger higher quality image for Pinterest&#8217;s use. If I was trying to pull from the img itself, then you&#8217;re correct, it would have needed to pull the src attribute.<br />
Because every themes implements images differently, everyone will have to alter the code to match their theme.<br />
Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Add a Pinterest Pin to a Magento Go Website by Jason</title>
		<link>http://andrewtrivette.com/2012/04/adding-a-pinterest-pin-to-a-magento-go-website/#comment-36</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 12 May 2012 07:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://andrewtrivette.com/?p=342#comment-36</guid>
		<description>ok...figured out what the problem is. 

You have:
var image_url = encodeURI(document.getElementById(&quot;main-image&quot;).getAttribute(&quot;href&quot;));

Should be:
var image_url = encodeURI(document.getElementById(&quot;main-image&quot;).getAttribute(&quot;src&quot;));

*notice that getAttribute should be &quot;src&quot;. Images don&#039;t have a &quot;href&quot; attribute.

Thanks for sharing this.</description>
		<content:encoded><![CDATA[<p>ok&#8230;figured out what the problem is. </p>
<p>You have:<br />
var image_url = encodeURI(document.getElementById(&#8220;main-image&#8221;).getAttribute(&#8220;href&#8221;));</p>
<p>Should be:<br />
var image_url = encodeURI(document.getElementById(&#8220;main-image&#8221;).getAttribute(&#8220;src&#8221;));</p>
<p>*notice that getAttribute should be &#8220;src&#8221;. Images don&#8217;t have a &#8220;href&#8221; attribute.</p>
<p>Thanks for sharing this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Add a Pinterest Pin to a Magento Go Website by Jason</title>
		<link>http://andrewtrivette.com/2012/04/adding-a-pinterest-pin-to-a-magento-go-website/#comment-35</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 12 May 2012 06:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://andrewtrivette.com/?p=342#comment-35</guid>
		<description>It&#039;s only working partially. I had to change &quot;&amp;&quot; to &quot;&amp;&quot;. In doing so, the url variable gets set but then it cuts off at &quot;media&quot;.</description>
		<content:encoded><![CDATA[<p>It&#8217;s only working partially. I had to change &#8220;&amp;&#8221; to &#8220;&amp;&#8221;. In doing so, the url variable gets set but then it cuts off at &#8220;media&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Add a Pinterest Pin to a Magento Go Website by Andrew Trivette</title>
		<link>http://andrewtrivette.com/2012/04/adding-a-pinterest-pin-to-a-magento-go-website/#comment-29</link>
		<dc:creator>Andrew Trivette</dc:creator>
		<pubDate>Sun, 29 Apr 2012 02:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://andrewtrivette.com/?p=342#comment-29</guid>
		<description>Two tips:
First, remember to put the code from step one into a static block that&#039;s included in the product page. Then put the other bit of code in the footer.
Second, you&#039;ll have to adapt the code depending on your theme to select the image. Each theme may have a different id attribute around the main image or not have a link to the image wrapped around the main image.</description>
		<content:encoded><![CDATA[<p>Two tips:<br />
First, remember to put the code from step one into a static block that&#8217;s included in the product page. Then put the other bit of code in the footer.<br />
Second, you&#8217;ll have to adapt the code depending on your theme to select the image. Each theme may have a different id attribute around the main image or not have a link to the image wrapped around the main image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Add a Pinterest Pin to a Magento Go Website by Carmen</title>
		<link>http://andrewtrivette.com/2012/04/adding-a-pinterest-pin-to-a-magento-go-website/#comment-28</link>
		<dc:creator>Carmen</dc:creator>
		<pubDate>Sun, 29 Apr 2012 00:58:31 +0000</pubDate>
		<guid isPermaLink="false">http://andrewtrivette.com/?p=342#comment-28</guid>
		<description>I am a newbie at this, I tried and tried  and followed you step by step , but no pinit button, thank you , it seems that you are the only one that was kind enough to explain it to us, thanks again. wish I could get it to work.
Blessings!
-Carmen Webb
lerivinos.com</description>
		<content:encoded><![CDATA[<p>I am a newbie at this, I tried and tried  and followed you step by step , but no pinit button, thank you , it seems that you are the only one that was kind enough to explain it to us, thanks again. wish I could get it to work.<br />
Blessings!<br />
-Carmen Webb<br />
lerivinos.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Add a Pinterest Pin to a Magento Go Website by Joe</title>
		<link>http://andrewtrivette.com/2012/04/adding-a-pinterest-pin-to-a-magento-go-website/#comment-26</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Fri, 20 Apr 2012 20:00:47 +0000</pubDate>
		<guid isPermaLink="false">http://andrewtrivette.com/?p=342#comment-26</guid>
		<description>Can&#039;t get it to work.  I put this code into the misc window under footer.
Nothing changed.  ANy idea how I can get it to work under each product?</description>
		<content:encoded><![CDATA[<p>Can&#8217;t get it to work.  I put this code into the misc window under footer.<br />
Nothing changed.  ANy idea how I can get it to work under each product?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

