<?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>Magento Design and Development &#187; twitter</title>
	<atom:link href="http://inchoo.net/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://inchoo.net</link>
	<description>Magento Design and Magento Development Professionals - Inchoo</description>
	<lastBuildDate>Mon, 06 Feb 2012 08:30:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>A tale of Twitter Goodies</title>
		<link>http://inchoo.net/tools-frameworks/a-tale-of-twitter-goodies/</link>
		<comments>http://inchoo.net/tools-frameworks/a-tale-of-twitter-goodies/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 13:42:29 +0000</pubDate>
		<dc:creator>Mladen Lotar</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[Tools & Frameworks]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=6273</guid>
		<description><![CDATA[Hello everyone! I decided that I&#8217;ll share some information on topic of Twitter implementation to a website. At the moment, Twitter offers three official &#8220;Goodies&#8221;, and we&#8217;ll go through them. Since it&#8217;s pretty straightforward, let&#8217;s begin. Tweet Button You&#8217;we all &#8230;<p><a href="http://inchoo.net/tools-frameworks/a-tale-of-twitter-goodies/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>Hello everyone! I decided that I&#8217;ll share some information on topic of Twitter implementation to a website. At the moment, Twitter offers three official &#8220;Goodies&#8221;, and we&#8217;ll go through them. Since it&#8217;s pretty straightforward, let&#8217;s begin. <img src='http://inchoo.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> <span id="more-6273"></span></p>
<h2>Tweet Button</h2>
<p>You&#8217;we all seen &#8220;Tweet this&#8221; button, right? Well, fellow developer Branko Ajzele wrote an article &#8220;<a id="post-3000" title="Permanent Link to Adding simple Tweet this for Magento products" rel="bookmark" href="../ecommerce/magento/adding-simple-tweet-this-for-magento-products/">Adding simple Tweet this for Magento products</a>&#8221; some time ago, and implementation was pretty simple:</p>
<pre class="brush: php; title: ; notranslate">
&lt;pre&gt;&lt;a title=&quot;Send this page to Twitter!&quot;
href=&quot;http://twitter.com/home?status=Check out the &lt;?php echo $this-&gt;htmlEscape($_product-&gt;getName()) ?&gt; at &lt; ?php echo $_product-&gt;getProductUrl() ?&gt;&quot;
target=&quot;_blank&quot;&gt;Tweet This!&lt;/a&gt;
&lt;/pre&gt;
</pre>
<p>And it still works just fine! But the thing is, it&#8217;s not styled, and especially not in &#8220;Twitter official&#8221; way. Now, Twitter has official Javascript API whose implementation is pretty straightforward too, like this:</p>
<pre class="brush: php; title: ; notranslate">

&lt;script src=&quot;http://platform.twitter.com/widgets.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;a href=&quot;http://twitter.com/share&quot;
data-url=&quot;&lt;?php echo $this-&gt;helper('core/url')-&gt;getCurrentUrl();?&gt;&quot;
data-count=&quot;vertical&quot;&gt;Tweet&lt;/a&gt;
</pre>
<p>Twitter&#8217;s JavaScript library offers automatic shortening of URLs using Twitters own <a href="http://t.co" target="_blank"><strong>t.co</strong></a> URL shortening application. Combined with automatic styling through <strong>data-count</strong> attribute. Official button offers 3 different styles:</p>
<p style="text-align: center;"><a href="http://inchoo.net/wp-content/uploads/2010/10/tweetbuttons.jpg"><img class="size-full wp-image-6275 aligncenter" title="tweetbuttons" src="http://inchoo.net/wp-content/uploads/2010/10/tweetbuttons.jpg" alt="" width="416" height="71" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">There are few properties (attributes) that you can use with Twitter API, and you can read more about them <a href="http://dev.twitter.com/pages/tweet_button" target="_blank">here</a>. Ant that concludes first part of the article &#8211; <strong>Official Twitter Button</strong>.</p>
<h2>Widgets</h2>
<p>There are <strong>5 official Twitter Widgets</strong>:</p>
<ol>
<li> <a href="http://twitter.com/goodies/widget_profile" target="_blank">Profile Widget &#8211; Display your most recent Twitter updates on any webpage.</a></li>
<li> <a href="http://twitter.com/goodies/widget_search" target="_blank">Search Widget &#8211; Displays search results in real time!</a></li>
<li> <a href="http://twitter.com/goodies/widget_faves" target="_blank">Faves Widget &#8211; Show off your favorite tweets! (real time)</a></li>
<li> <a href="http://twitter.com/goodies/widget_list" target="_blank">List Widget &#8211; Put your favorite tweets into a list, then show them off in a widget.</a></li>
<li> <a href="http://twitter.com/goodies/facebook" target="_blank">Facebook Application &#8211; Allows you to share your most recent Twitter updates with your Facebook friends.</a></li>
</ol>
<p>Follow any of these links and you&#8217;ll be able to generate code for your website in just a few clicks. Embedding them on to the site is same as with &#8220;Tweet This&#8221; button &#8211; copy and paste generated code on your web page and you&#8217;re ready. And now on to the last &#8220;Twitter Goodie&#8221;:</p>
<h2>Buttons</h2>
<p>On <a href="http://twitter.com/goodies/buttons" target="_blank">this link</a>, you can get your own Twitter button in just one click! You will get something that looks like this:</p>
<pre class="brush: php; title: ; notranslate">

&lt;a href=&quot;http://www.twitter.com/your_username&quot;&gt;&lt;img src=&quot;http://twitter-badges.s3.amazonaws.com/follow_me-a.png&quot; alt=&quot;Follow your_username on Twitter&quot;/&gt;&lt;/a&gt;
</pre>
<p>And with this Goodie, you have option to choose from 18 different button styles, so that you can integrate it to almost any website layout. And now, on to the fun part:</p>
<h2>Twitter Implementation into Magento</h2>
<p>I&#8217;ll explain a basic example on how to implement Twitter button into Magento with fixed position. First of all, open up the &#8220;app/design/fromtend/default/your_theme/template/page/html/header.phtml&#8221; and scroll to the bottom of the file. Now insert this part of the code:</p>
<pre class="brush: php; title: ; notranslate">

&lt;div id=&quot;social-media-buttons&quot;&gt;

&lt; ?php if(!ereg(&quot;https&quot;,$this-&gt;helper('core/url')-&gt;getCurrentUrl())):?&gt;
&lt;script src=&quot;http://platform.twitter.com/widgets.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;a href=&quot;http://twitter.com/share&quot;
data-url=&quot;&lt;?php echo $this-&gt;helper('core/url')-&gt;getCurrentUrl();?&gt;&quot;
data-count=&quot;vertical&quot;&gt;Tweet&lt;/a&gt;
&lt; ?php endif;?&gt;
&lt;/div&gt;
</pre>
<p>Now you&#8217;ve added button itself, which will be displayed on all non SSL pages. All you still have to do is to add this part at the end of &#8220;skin/frontend/default_your_theme/css/styles.css&#8221; file:</p>
<pre class="brush: css; title: ; notranslate">
#social-media-buttons{
position:fixed;
left: 50%;
margin: 50px 0 0 -570px;
}
</pre>
<p>And you will have Twitter button embedded on your site, fixedly positioned 570 pixels left from the middle of the site. Congratulations! <img src='http://inchoo.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h2>Conclusion</h2>
<p>And to conclude, &#8220;old way&#8221; as Branko described earlier still works, but it&#8217;s only for &#8220;Tweet This Button&#8221;, and it isn&#8217;t styled. So there are advantages if you choose to implement Twitter to your site this (official) way (especially with widgets).</p>
<p>And I must mention that official API works exclusively over <strong>http</strong> protocol, and not with <strong>https</strong>. It&#8217;s important because if you put tweet button on SSL checkout page for example, customer might get scared if something isn&#8217;t working right, and at the and eventually give up on shopping.</p>
<p>I hope you learned something useful today. Bye!</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/tools-frameworks/a-tale-of-twitter-goodies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Now that the value&#8217;s gone</title>
		<link>http://inchoo.net/online-marketing/now-that-the-values-gone/</link>
		<comments>http://inchoo.net/online-marketing/now-that-the-values-gone/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 08:08:35 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=3759</guid>
		<description><![CDATA[I&#8217;ve been the active user of social networks before they called it social network, as did many people that dare to call themselves power-users of the internet. In all these years, I wrote thousands of status updates (or however they &#8230;<p><a href="http://inchoo.net/online-marketing/now-that-the-values-gone/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been the active user of social networks before they called it social network, as did many people that dare to call themselves power-users of the internet. <span id="more-3759"></span></p>
<p>In all these years, I wrote thousands of status updates (or however they called them) and read probably hundreds of thousands more, but if you ask me to tell you what I learned from this massive amount of data I consumed, I&#8217;ll have to say: nothing.</p>
<p>One big fat zero. That&#8217;s the value of hundreds of thousands of status updates day after they were posted and that&#8217;s the biggest problem today&#8217;s social networks have to face.</p>
<p>If we look at the more primitive social networks, ghosts of the past that are still lurking in the shadows of the internet &#8211; forums, you will see they are pretty much the same thing as social networks with one big difference &#8211; they provide value! This is the only reason why Facebook, Twitter and their clones didn&#8217;t destroy forums. Not to digress to much, you can read here about <a title="Forums and Social Media" href="http://inchoo.net/online-marketing/forums-and-social-media-marketing/">forums and social networks comparison</a>.</p>
<p><strong>Why don&#8217;t users bring valuable content on Facebook and Twitter?</strong></p>
<p>It&#8217;s not because they have no way of doing it. They have a great way to post really any kind of content on Facebook. They can use notes to write extensive &#8220;blog posts&#8221;, add video,  pictures, tag people, link to profiles and make content very valuable and interactive.</p>
<p>It&#8217;s because they:</p>
<ul>
<li>Have limited audience. They are sharing their valuable content to group of their friends. When I write a super good article, I don&#8217;t want my friends to read it, I need my targeted audience to read it or that content brings no value to me.</li>
<li>Lack the motivation. Everything on Facebook is built to make you as lazy as possible. I bet non-power-users of Facebook have no idea how to write a note, and these that actually do know, use it for chain letter purposes. Facebook simply doesn&#8217;t encourage creating valuable content. Pity.</li>
</ul>
<p><img class="alignleft size-full wp-image-3760" title="Big Bro" src="http://inchoo.net/wp-content/uploads/2010/01/big-bro.jpg" alt="Big Bro" width="250" height="282" /><strong>Where is the big brother?</strong></p>
<p>Another problem is obvious absence of a big brother figure. When you come to a professional forum and start writing stupid stuff or start a chain letter, there will be a big fat <strong>moderator or administrator</strong> who will smite you like a little worm. There is no one to smash the trolls, to delete the useless content, to filter the good and wrong, to encourage creation of value on Facebook and similar networks. Due to it&#8217;s audience being a bit older and possibly more tech savvy, Twitter brings a bit more value then Facebook but also desperately lacks the big brother figure. Twitter is also just a messenger, you can&#8217;t build valuable content on it, you can just point to it.</p>
<p>I believe the first social network that solves the problem of absence of valuable content or introduces the big brother figures might be the next big thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/now-that-the-values-gone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are you sick of &#8220;Social Media Experts&#8221;?</title>
		<link>http://inchoo.net/online-marketing/are-you-sick-of-social-media-experts/</link>
		<comments>http://inchoo.net/online-marketing/are-you-sick-of-social-media-experts/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 10:06:19 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=3360</guid>
		<description><![CDATA[If you spend at least a few days on Twitter you will probably come to a conclusion that Twitter&#8217;s user base is: 50% bots, 10% br1tn3y fuck3d accounts 39% Social Media Experts and 1% users / sales people / marketers. &#8230;<p><a href="http://inchoo.net/online-marketing/are-you-sick-of-social-media-experts/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>If you spend at least a few days on Twitter you will probably come to a conclusion that Twitter&#8217;s user base is: 50% bots, 10% br1tn3y fuck3d accounts 39% Social Media Experts and 1% users / sales people / marketers.<span id="more-3360"></span></p>
<p>OK, these numbers might be a bit exaggerated but it&#8217;s the image of Twitter a normal user sees nowadays.</p>
<p>I&#8217;m not trying to say there is no such thing as &#8220;Social Media Expert&#8221; or that SMM doesn&#8217;t work. I&#8217;m just trying to say there is way too many of them that present themselves as the expert in social media while their accounts, actions and interactions show you the opposite.</p>
<p>Just to list a few titles of blog posts these guys do to give you a clear picture of what I&#8217;m talking about&#8230; A &#8220;Social Media Expert&#8221; that probably never ran a single corporate account gives you the article about:</p>
<ul>
<li>10 essential Twitter tools to run a successful corporate account</li>
</ul>
<p>Oh come on! How many tools do you need to run a Twitter account? All you need is already on the <a title="Twitter" href="http://twitter.com">Twitter.com</a>. You can use some sort of client if you&#8217;re going to Tweet from your mobile but that&#8217;s as far as I&#8217;d go. Most of the Twitter tools you see out there will not save you any time or make your life any easier at all. I know, trust me, I tested almost every single one of them.</p>
<p><img class="alignnone size-full wp-image-3361" title="social media expert" src="http://inchoo.net/wp-content/uploads/2009/12/social-media-expert.jpg" alt="social media expert" width="620" height="465" /></p>
<p>Another kind of blog post titles I love seeing and laughing at:</p>
<ul>
<li>Get a consultant before your business fails at Twitter</li>
<li>20 reasons to hire a Social Media consultant</li>
</ul>
<p>This is a harsh truth that no &#8220;Social Media Expert&#8221; will ever tell you:</p>
<blockquote><p>All of these social media websites are made for users, not marketing superstars. You already posses all of the knowledge needed to run a stupid Twitter account. It&#8217;s a dead simple thing: You have a box where you put up to 140 characters and hit the &#8220;Update&#8221; button&#8230; And yet they (&#8220;Social Media Experts&#8221;) have the ability to make hundreds of articles every day about how complex this dead simple thing is.</p></blockquote>
<p>A typical internet user is more then qualified to run your corporate Twitter account. It might take a few days before this person learns a few tricks and figure out how to gain an audience but reading hundreds of blog posts on that topic will only get this person even more confused. It will give out the impression that if they don&#8217;t follow some guidelines set by &#8220;Social Media Superstars&#8221; their business will fail at social networking.</p>
<p>As I said at the beginning of this article, it&#8217;s not that social media experts are useless, it&#8217;s just that most of them are not experienced in their field at all. They have great theories, but theories in this case don&#8217;t pay the bills.</p>
<p><strong>The conclusion:</strong></p>
<p>I&#8217;d advise you to <strong>hire a social media expert when</strong>: you need a dedicated person to run your social media accounts and work with the rest of your marketing team to fulfill your end goals.</p>
<p>I&#8217;d advise you <strong>not to hire a social media expert when</strong>: you think you need someone to teach you how to use Twitter.</p>
<p><em>If you like what you see, you should <a title="Magento Developers" href="http://twitter.com/inchoo">follow me on Twitter</a> (and by me I mean our corporate account that I run). Thanks for the CC image left on <a title="Blank Sign" href="http://www.flickr.com/photos/theartguy/2915614296/sizes/l/">Flickr by TheArtGuy</a>, I made this cool image in this blog post from it.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/are-you-sick-of-social-media-experts/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>LinkedIn and Twitter Integration</title>
		<link>http://inchoo.net/online-marketing/linkedin-and-twitter-integration/</link>
		<comments>http://inchoo.net/online-marketing/linkedin-and-twitter-integration/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 07:43:37 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=3244</guid>
		<description><![CDATA[Finally, LinkedIn presented it&#8217;s newest feature, the complete integration with Twitter. When I say complete I mean status updates go both way. I personally didn&#8217;t expect something as good and as useful from LinkedIn any time soon. The new LinkedIn &#8230;<p><a href="http://inchoo.net/online-marketing/linkedin-and-twitter-integration/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>Finally, <a title="LinkedIn" href="http://linkedin.com">LinkedIn</a> presented it&#8217;s newest feature, the complete integration with <a title="Twitter" href="http://twitter.com">Twitter</a>. When I say complete I mean status updates go both way. I personally didn&#8217;t expect something as good and as useful from LinkedIn any time soon.<span id="more-3244"></span></p>
<p>The new LinkedIn application for Twitter allows you to connect your Twitter account and:</p>
<ul>
<li><strong>Update your LinkedIn status from Twitter whenever you Tweet</strong></li>
<li><strong>Or update your LinkedIn status whenever you Tweet using hashtag #in</strong></li>
<li><strong>Post Tweets using the LinkedIn status</strong> (by checking the check-box next to the Twitter logo).</li>
</ul>
<p><img class="alignleft size-full wp-image-3245" style="margin-right:7px;" title="Posting Tweets from LinkedIn status updater" src="http://inchoo.net/wp-content/uploads/2009/11/linkedin1.jpg" alt="Posting Tweets from LinkedIn status updater" width="350" height="181" />If you go to the Twitter Settings (drop down menu on the Twitter logo at homepage) you will see you can actually add more Twitter accounts to your LinkedIn profile.</p>
<p>And wow, here comes the magic part: when you add more then one Twitter account to your LinkedIn profile, you&#8217;re converting LinkedIn into a powerful Twitter multy-account management client. What a perfect tool for business people handling several corporate accounts and their personal account.</p>
<p>Now when I post status update via LinkedIn, I can choose on which account (or accounts) I wish my Tweet to appear using the good old drop-down on the Twitter logo.</p>
<p>Long live LinkedIn! Don&#8217;t forget to <a title="Magento Developers" href="http://twitter.com/inchoo">follow Inchoo via Twitter</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/linkedin-and-twitter-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter lists you should follow</title>
		<link>http://inchoo.net/online-marketing/twitter-lists-you-should-follow/</link>
		<comments>http://inchoo.net/online-marketing/twitter-lists-you-should-follow/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 12:14:11 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=3167</guid>
		<description><![CDATA[It&#8217;s been all over the web&#8230; Twitter rolled out the most useful feature it ever head &#8211; Twitter lists. I bet all of you started building your own lists as soon as you got the access to this feature and &#8230;<p><a href="http://inchoo.net/online-marketing/twitter-lists-you-should-follow/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been all over the web&#8230; Twitter rolled out the most useful feature it ever head &#8211; <strong>Twitter lists</strong>. I bet all of you started building your own lists as soon as you got the access to this feature and those of you who follow a lot of people found it extremely painful to organize all of the people you follow into lists. <span id="more-3167"></span></p>
<p>I started creating two lists with our <a title="Magento Developers" href="http://twitter.com/inchoo">Inchoo</a> twitter account: <a title="Magento Twitter List" href="http://twitter.com/inchoo/magento">Magento twitter List</a> and <a title="Inbound Marketing Twitter List" href="http://twitter.com/inchoo/inbound-marketing">Inbound Marketing Twitter list</a>. I&#8217;m accepting recommendations on which accounts should I add to the lists, please comment if you know I&#8217;m missing someone who really deserves to be there.</p>
<h2>Here are the Magento related Twitter lists you can follow:</h2>
<ul>
<li><a title="Magento List" href="http://twitter.com/highrockmedia/magento">highrockmedia/magento</a></li>
<li><a title="Magento List" href="http://twitter.com/anderstr/magento">anderstr/magento</a></li>
<li><a title="Magento Twitter List" href="http://twitter.com/iniplanet/magento">iniplanet/magento</a></li>
<li><a title="Twitter List about Magento" href="http://twitter.com/thomas_schmidt/magento">thomas_schmidt/magento</a></li>
<li><a title="Twitter List (Magento)" href="http://twitter.com/inchoo/magento">inchoo/Magento</a></li>
</ul>
<h2>Here are Inbound Marketing (SEO, SEM, SMM) Twitter lists you can follow:</h2>
<ul>
<li><a title="Inbound Marketing Twitter List" href="http://twitter.com/inchoo/inbound-marketing">inchoo/Inbound-Marketing</a></li>
<li><a title="SEO / Copywriting Twitter List" href="http://twitter.com/Mr603/seo-copywriting">Mr603/seo-copywriting</a></li>
<li><a title="Social Media Twitter List" href="http://twitter.com/riksharr/social-media">riksharr/social-media</a></li>
<li><a title="Marketing Twitter List" href="http://twitter.com/WholeMind/marketing">WholeMind/marketing</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/twitter-lists-you-should-follow/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding simple Tweet this for Magento products</title>
		<link>http://inchoo.net/ecommerce/magento/adding-simple-tweet-this-for-magento-products/</link>
		<comments>http://inchoo.net/ecommerce/magento/adding-simple-tweet-this-for-magento-products/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 15:04:13 +0000</pubDate>
		<dc:creator>Branko Ajzele</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=3000</guid>
		<description><![CDATA[There are few different ways one can achieve this kind of functionality. Normally in Magento you would do it like a real, &#8220;independent&#8221;, module (extension) thus loosing at least two ours to make a few lines of code work. The &#8230;<p><a href="http://inchoo.net/ecommerce/magento/adding-simple-tweet-this-for-magento-products/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>There are few different ways one can achieve this kind of functionality. Normally in Magento you would do it like a real, &#8220;independent&#8221;, module (extension) thus loosing at least two ours to make a few lines of code work.<span id="more-3000"></span></p>
<p>The simplest way to add this kind of feature to your product view page is to open the view.phtml file under the app/design/frontend/default/custom/template/catalog/product/ folder.</p>
<p>And add the following code where you sish to show your &#8220;Tweet this&#8221; link:</p>
<pre class="brush: php; title: ; notranslate">
&lt;a title=&quot;Send this page to Twitter!&quot; href=&quot;http://twitter.com/home?status=Check out the &lt;?php echo $this-&gt;htmlEscape($_product-&gt;getName()) ?&gt; at &lt; ?php echo $_product-&gt;getProductUrl() ?&gt;&quot; target=&quot;_blank&quot;&gt;Tweet This!&lt;/a&gt;
</pre>
<p>.</p>
<p>Thats it. Remember, this is truly the simplest solution, aka Quick &#038; Dirty. For more fancy stuff&#8230; we do custom deevelopment <img src='http://inchoo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers.</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/ecommerce/magento/adding-simple-tweet-this-for-magento-products/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Get Yahoo MeMe Invitations Here!</title>
		<link>http://inchoo.net/online-marketing/get-yahoo-meme-invitations-here/</link>
		<comments>http://inchoo.net/online-marketing/get-yahoo-meme-invitations-here/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 09:57:03 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=2914</guid>
		<description><![CDATA[We&#8217;re testing out Yahoo!&#8217;s new Twitter clone service known as yahoo MeMe. The service looks pretty nice from what I can see. For us, marketers, this is not an Twitter alternative, this is another communication channel to look after. I &#8230;<p><a href="http://inchoo.net/online-marketing/get-yahoo-meme-invitations-here/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re testing out Yahoo!&#8217;s new Twitter clone service known as yahoo MeMe. The service looks pretty nice from what I can see.<span id="more-2914"></span></p>
<p>For us, marketers, this is not an Twitter alternative, this is another communication channel to look after. I really like the ability to easily split the content into four main media categories: text, photos, video, and music.</p>
<p>I still don&#8217;t get it what&#8217;s the main difference between <strong>video</strong> and <strong>music</strong>. I mean, videos can be music as well, can&#8217;t they? Perhaps they should have used word &#8220;audio&#8221; instead of &#8220;music&#8221; as it really specifies the media, not the content of the media.</p>
<h2>How to get a Yahoo MeMe invitation?</h2>
<p>Anyway&#8230; Check out our new <a title="Yahoo MeMe" href="http://meme.yahoo.com/inchoo/">Yahoo MeMe account</a> and <strong>drop us a line in the comments here if you want a yahoo meme invitation</strong>. Make sure you leave us a correct e-mail address when you leave a comment since the invitations will be sent to that e-mail.</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/get-yahoo-meme-invitations-here/feed/</wfw:commentRss>
		<slash:comments>66</slash:comments>
		</item>
		<item>
		<title>Flowchart &#8211; Are your potential customers on Twitter?</title>
		<link>http://inchoo.net/online-marketing/flowchart-are-your-potential-customers-on-twitter/</link>
		<comments>http://inchoo.net/online-marketing/flowchart-are-your-potential-customers-on-twitter/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 08:38:50 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Fun & Events]]></category>
		<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=2895</guid>
		<description><![CDATA[I&#8217;ve done some research, and considering the number of people currently using Twitter and diversity of industries and demographics they belong to, I came up with this extremely useful flowchart that you can use to determine if your targeted audience &#8230;<p><a href="http://inchoo.net/online-marketing/flowchart-are-your-potential-customers-on-twitter/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve done some research, and considering the number of people currently using Twitter and diversity of industries and demographics they belong to, I came up with this extremely useful flowchart that you can use to determine if your targeted audience is using Twitter or not.<span id="more-2895"></span><img class="alignnone size-full wp-image-2896" title="Flowchart that helps you find out if your customers are on Twitter or not" src="http://inchoo.net/wp-content/uploads/2009/09/twitterflowchart.jpg" alt="Flowchart that helps you find out if your customers are on Twitter or not" width="620" height="456" /></p>
<p>It appears that if you sell products to extraterrestrials, the probability of finding your potential customers on Twitter decreases dramatically. I hope this helps you my respected colleagues.</p>
<p><a title="Magento Developers" href="http://twitter.com/inchoo"><em>Follow me on Twitter!</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/flowchart-are-your-potential-customers-on-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter linking hashtags to searches was a great move</title>
		<link>http://inchoo.net/online-marketing/twitter-linking-hashtags-to-searches-was-a-great-move/</link>
		<comments>http://inchoo.net/online-marketing/twitter-linking-hashtags-to-searches-was-a-great-move/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 07:48:13 +0000</pubDate>
		<dc:creator>Toni Anicic</dc:creator>
				<category><![CDATA[Online Marketing]]></category>
		<category><![CDATA[inbound marketing]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://inchoo.net/?p=2562</guid>
		<description><![CDATA[I was trying not to comment on Twitter&#8216;s decision to link hashtags with search until I can see how that one effected the service. Last night I saw something that shown the real value of this move. The ability to &#8230;<p><a href="http://inchoo.net/online-marketing/twitter-linking-hashtags-to-searches-was-a-great-move/">Read more</a><p>]]></description>
			<content:encoded><![CDATA[<p>I was trying not to comment on <a href="http://twitter.com">Twitter</a>&#8216;s decision to link hashtags with search until I can see how that one effected the service. Last night I saw something that shown the real value of this move.<span id="more-2562"></span></p>
<p>The ability to simply click on a hashtag and see everyone engaged in the discussion made it easier for the community to interact. It opened space for bigger and more relevant discussions that are easier to follow.</p>
<p><strong>How it use to be:</strong></p>
<p>Discussions use to be generally limited inside a mutually followed community. It was extremely rear that persons not following themselves would engage into a discussion. An influential twitterer could set a ball rolling but there was no real interaction between thousands of his followers if they weren&#8217;t following between themselves.</p>
<p><strong>What changed:</strong></p>
<p>Yesterday, for example, a small community of people on twitter started talking about Croatian media. We talked about the need for a decent online news channel, a trusted source unaffected by the government or mass capital. The discussion picked up under the hashtag <a title="#HrMedia Twitter Search" href="http://twitter.com/#search?q=%23HrMedia">#HrMedia</a>.</p>
<p>Suddenly, people that I&#8217;ve never heard of started engaging us in conversation. They brought thoughts and ideas of value. This was no longer a 140 character conversation. People started talking to each other as if we were in some sort of bulletin board, a special one, niche targeted for one really small but important topic. I ended up following lots of people I never knew about before and <a title="How to gain more twitter followers" href="http://inchoo.net/online-marketing/how-to-get-targeted-followers-on-twitter/">gained even more followers</a> as a result of this discussion. Another result of this discussion is that a real life meeting is arranged to discuss the idea of actually creating such a news site.</p>
<p>It appears that Twitter did a great move and became much more useful now that it links hashtags to search and enables big, more valuable discussions.</p>
]]></content:encoded>
			<wfw:commentRss>http://inchoo.net/online-marketing/twitter-linking-hashtags-to-searches-was-a-great-move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

