<?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>plus one Archives - gj</title>
	<atom:link href="https://blog.gaiterjones.com/tag/plus-one/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.gaiterjones.com/tag/plus-one/</link>
	<description>gaiterjones</description>
	<lastBuildDate>Tue, 26 Jul 2011 07:49:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.3</generator>
	<item>
		<title>Google Plus One button for Magento Products</title>
		<link>https://blog.gaiterjones.com/google-plus-one-button-for-magento-products/</link>
					<comments>https://blog.gaiterjones.com/google-plus-one-button-for-magento-products/#comments</comments>
		
		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Fri, 01 Jul 2011 10:18:30 +0000</pubDate>
				<category><![CDATA[5 Minute Fix]]></category>
		<category><![CDATA[Google Plus One Button]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google plus one button]]></category>
		<category><![CDATA[plus one]]></category>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=448</guid>

					<description><![CDATA[Google launched their Plus (+) range of products this week, Google + integrates existing products from Google along with some new social products into a new &#8220;social networking&#8221; service. Obviously...<a class="more-link" href="https://blog.gaiterjones.com/google-plus-one-button-for-magento-products/" title="Continue reading">Continue reading</a>]]></description>
										<content:encoded><![CDATA[<p><a href="https://blog.gaiterjones.com/wp-content/uploads/2011/07/Use-the-Google-Plus-one-1-button-on.jpg"><img fetchpriority="high" decoding="async" class="hang-1-column    alignnone" title="Google Plus one Button for Magento" src="https://blog.gaiterjones.com/wp-content/uploads/2011/07/Use-the-Google-Plus-one-1-button-on.jpg" alt="Google Plus one Button for Magento" width="240" height="218" /></a></p>
<p>Google launched their Plus (+) range of products this week, Google + integrates existing products from Google along with some new social products into a new &#8220;social networking&#8221; service. Obviously Google want to challenge Facebook as a new social networking hub. While Facebook already have a huge user base, it is nothing compared with the number of users interacting with Google on a daily basis.</p>
<p>Interestingly, as Facebook attempts to assimilate the Internet into its own social networking open graph database populated with millions of people, Google , who already have the Internet indexed and cached in its huge databases now want to pull in the millions of people to create a social networking environment built around existing, new products and of course their number one business their search engine.</p>
<p>Enter the Plus One Button</p>
<p>The Google plus one button is to Google searches what the Facebook like button is to web content. Google <a href="http://www.google.com/+1/button/" target="_blank">says </a>&#8220;The +1 button is shorthand for &#8220;this is pretty cool&#8221; or &#8220;you should check this out.&#8221;&#8221;. When you or someone in your Google social circle &#8220;plus one&#8221; something by clicking the plus one button on a site, this information will be used by Google to manipulate/improve Google search results so that when you search for something you will be able to see for example if your friends have already recommended the product returned in the search. If your best buddy likes it, it must be good right? Whether its &#8220;pretty cool&#8221; or not lets wait and see, no doubt Google Plus will be THE next big thing. The plus one button is a clever way for Google to rewarding good web content and personalise search results, as (in theory) only humans will be able to &#8220;Plus One&#8221; something.</p>
<p>I am still getting my head around Google plus one and all of its implications but needless to say if there is a new social media marketing opportunity out there, especially one so tightly integrated with Google search then we need to take advantage of it and enable plus one buttons for our Magento products. Content with a large amount of +1s will get higher rankings in Google’s organic search results, create more visibility for your products and drive more traffic to your site. Google says &#8220;Think of the +1 button as a way for fans of your business to recommend what you offer, for all their friends and contacts to see. By helping searchers see more personal, relevant ads, we believe you’ll see more qualified traffic.&#8221;</p>
<p align="center"><img decoding="async" src="http://services.google.com/fh/files/newsletters/04_annotation.png" alt="" /></p>
<p>Here is a 5 minute fix to add the plus one button to all Magento product pages.</p>
<h2>Adding Plus One</h2>
<p>For Magento 1.4+ stores:</p>
<p>We can place the Google plus one button next to our <a title="Magento Product Social Media Marketing Part 1 – the Facebook Like Button" href="https://blog.gaiterjones.com/magento-social-media-marketing-facebook-like-button/" target="_blank">Facebook Like button</a> with a few lines of code. Locate <em>view.phtml</em> in your theme, it will be located in the <em>default/template/catalog/product </em>folder of your theme.</p>
<pre class="brush:php">&lt;!-- Google Plus One Button BEGIN --&gt;
&lt;div id="google-plusone"&gt;
&lt;script type="text/javascript" src="https://apis.google.com/js/plusone.js"&gt;
{"parsetags": "explicit"},
{"lang": "&lt;?php echo $this-&gt;__('en-GB') ?&gt;"}
&lt;/script&gt;
&lt;g:plusone size="medium" count="false" href="&lt;?php echo trim(Mage::registry('current_product')-&gt;getProductUrl()) ?&gt;"&lt;/g:plusone&gt;
&lt;/div&gt;
&lt;script type="text/javascript"&gt;
gapi.plusone.go("google-plusone");
&lt;/script&gt;
&lt;!-- Google Plus One Button END --&gt;</pre>
<p>If you already have implemented a Facebook Like button, insert the following code below the existing code You can also position the google-plusone DIV wherever you would like the button to appear on the page with CSS.</p>
<p>To translate the locale code correctly add a line to your themes locale file and refresh your cache. For example for a German language store use</p>
<p><strong>&#8220;en-GB&#8221;,&#8221;de&#8221;</strong></p>
<figure id="attachment_450" aria-describedby="caption-attachment-450" style="width: 495px" class="wp-caption alignnone"><a href="https://blog.gaiterjones.com/wp-content/uploads/2011/07/googleplusonebutton.jpg"><img decoding="async" class="hang-1-column        " title="Google Plus One Button for Magento" src="https://blog.gaiterjones.com/wp-content/uploads/2011/07/googleplusonebutton.jpg" alt="Google Plus One Button for Magento" width="495" height="293" /></a><figcaption id="caption-attachment-450" class="wp-caption-text">Google Plus One Button for Magento</figcaption></figure>
<p>For Magento 1.4+ make sure you have canonical URLs enabled in admin (see my Facebook Like button <a title="Magento Product Social Media Marketing Part 1 – the Facebook Like Button" href="https://blog.gaiterjones.com/magento-social-media-marketing-facebook-like-button/" target="_blank">post</a> for more info), we have specifed the URL in the Google API code to ensure Google uses the Magento enabled canonical URL. They say that the code will default to look for the canonical tag but better to be safe than sorry &#8211; in my tests it was not always used. The size and appearance of the button can be modified by changing the <em>size </em>and <em>count </em>options. See the Google <a href="http://code.google.com/apis/+1button/" target="_blank">documentation </a>for more details.</p>
<h2>Further Reading</h2>
<p><a href="http://en.wikipedia.org/wiki/Google%2B">http://en.wikipedia.org/wiki/Google%2B</a></p>
<p><a href="http://googleblog.blogspot.com/2011/06/introducing-google-project-real-life.html">http://googleblog.blogspot.com/2011/06/introducing-google-project-real-life.html</a></p>
<p><a href="http://www.ibtimes.com/articles/172678/20110701/google-plus-facebook-killer-google-zynga-android-developers-facebook-losing-users-google-plus-next-b.htm">http://www.ibtimes.com/articles/172678/20110701/google-plus-facebook-killer-google-zynga-android-developers-facebook-losing-users-google-plus-next-b.htm</a></p>
<p><a href="http://www.aaronpeters.nl/blog/google-plus1-button-performance-review">http://www.aaronpeters.nl/blog/google-plus1-button-performance-review</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.gaiterjones.com/google-plus-one-button-for-magento-products/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
	</channel>
</rss>
