<?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>GreenPanda</title>
	<atom:link href="http://www.greenpanda.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.greenpanda.co.uk</link>
	<description>Internet Marketing</description>
	<lastBuildDate>Mon, 30 Jan 2012 20:30:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>OpenCart: How to add persistant or common attributes</title>
		<link>http://www.greenpanda.co.uk/2011/11/opencart-persistant-or-common-attributes/</link>
		<comments>http://www.greenpanda.co.uk/2011/11/opencart-persistant-or-common-attributes/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 15:49:31 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[OpenCart]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=380</guid>
		<description><![CDATA[OpenCart must now be the best, free PHP ecommerce script which has been developed to a very high standard.  There<a href="http://www.greenpanda.co.uk/2011/11/opencart-persistant-or-common-attributes/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>OpenCart must now be the best, free PHP ecommerce script which has been developed to a very high standard.  There are however, a number of shortfalls which the developers are yet to get around to.</p>
<p>When creating an online shop, it is highly likely that the majority of your products will be similar, and therefore have the same attributes.  OpenCart sadly has not realised this yet, and every product&#8217;s attributes must be entered one at a time and for every individual product.<span id="more-380"></span></p>
<div id="attachment_392" class="wp-caption aligncenter" style="width: 572px; max-width: 572px; "><img class="size-full wp-image-392" title="opencart-attributes" src="http://www.greenpanda.co.uk/wp-content/uploads/opencart-attributes.jpg" alt="" width="572" height="151" /><p class="wp-caption-text">I&#39;ve moved the attributes up to below the Manufacturer (in my case &quot;Author&quot;) to improve visibility.</p></div>
<p style="text-align: left;">&nbsp;</p>
<p style="text-align: left;">The store I am working on at the moment is a bookstore, and therefore each product has these four main attributes:</p>
<ul>
<li>Illustrator</li>
<li>Publisher</li>
<li>Format</li>
<li>ISBN</li>
</ul>
<p>(I know what you&#8217;re thinking: &#8220;where&#8217;s the author?&#8221;.  I have already re-named the &#8220;Manufacturer&#8221; field to &#8220;Author&#8221; for some nice in-built functionality.)</p>
<p>My main problems with this are:</p>
<ol>
<li>Remembering the four common attributes</li>
<li>The time it takes to add each one</li>
</ol>
<p>I wanted a way of adding these four attributes automatically, but only to the 90% of products that required them.  Here&#8217;s how I did it&#8230;</p>
<h3>1. I created a new javascript function based on the existing one that adds attributes to the page.</h3>
<p>Open the file: admin/view/template/catalog/product_form.tpl</p>
<p>Around line 740, the is the function &#8220;addAttribute&#8221;.  Copy this and paste it just underneath the first and make the following changes:</p>
<pre>function addAttribute<span style="color: #ff0000;">2</span>(<span style="color: #ff0000;">attName,attID</span>) {
    html  = '&lt;tbody id="attribute-row' + attribute_row + '"&gt;';
    html += '  &lt;tr&gt;';    html += '    &lt;td&gt;&lt;input type="text"
name="product_attribute[' + attribute_row + '][name]"
value="<span style="color: #ff0000;">' + attName + '</span>" /&gt;&lt;input type="hidden"
name="product_attribute[' + attribute_row + '][attribute_id]"
value="<span style="color: #ff0000;">' + attID + '</span>" /&gt;&lt;/td&gt;';
    html += '    &lt;td&gt;';    &lt;?php foreach ($languages as $language) { ?&gt;
    html += '&lt;textarea name="product_attribute[' + attribute_row + ']
[product_attribute_description][&lt;?php echo $language['language_id']; ?&gt;]
[text]" cols="40" rows="5"&gt;&lt;/textarea&gt;&lt;img src="view/image/flags/
&lt;?php echo $language['image']; ?&gt;" title="&lt;?php echo $language['name']; ?&gt;
" /&gt;&lt;br /&gt;';    &lt;?php } ?&gt;
    html += '    &lt;/td&gt;';
    html += '    &lt;td&gt;&lt;a onclick="$(\'#attribute-row' + attribute_row + '\')
.remove();"&gt;&lt;?php echo $button_remove; ?&gt;&lt;/a&gt;&lt;/td&gt;';
    html += '  &lt;/tr&gt;';
    html += '&lt;/tbody&gt;';

    $('#attribute tfoot').before(html);

    attributeautocomplete(attribute_row);

    attribute_row++;
}</pre>
<h3>2. Added a new link to the same file</h3>
<p>Around line 308, there is an empty table cell whee i added the following link (I&#8217;ll explain what it means in a moment):</p>
<pre>&lt;a onclick="addAttribute2('ISBN',12);addAttribute2('Illustrator',13);
addAttribute2('Format',14);addAttribute2('Publisher',15);"&gt;Add Common Attributes&lt;/a&gt;</pre>
<div id="attachment_399" class="wp-caption aligncenter" style="width: 572px; max-width: 572px; "><img class="size-full wp-image-399" title="opencart-attributes-new-button" src="http://www.greenpanda.co.uk/wp-content/uploads/opencart-attributes-new-button1.jpg" alt="" width="572" height="220" /><p class="wp-caption-text">The new link in place...</p></div>
<p>&nbsp;</p>
<p>The new function &#8220;addAttribute2&#8243;, does exactly the same as the old, but pre-fills the attribute name and ID.  The name is obviously needed so you can see which attribute is which, but the ID is needed because the system saves the ID, not the name, so you will need to find the ID of each field you want pre-populated.  I found mine through <a title="phpMyAdmin" href="http://en.wikipedia.org/wiki/PhpMyAdmin" target="_blank">phpMyAdmin</a>, but there are probably other ways to find out.</p>
<h3>Conclusion</h3>
<p>So, now I can add the four common attributes at the click of a button saving me a little time and a lot of brainpower.</p>
<p>You could extend this to include common attribute values as well, but that wasn&#8217;t necessary in my case.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/11/opencart-persistant-or-common-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google hoarding keyword data &#8211; what are they up to?</title>
		<link>http://www.greenpanda.co.uk/2011/10/google-hoarding-keyword-data/</link>
		<comments>http://www.greenpanda.co.uk/2011/10/google-hoarding-keyword-data/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 08:06:43 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=374</guid>
		<description><![CDATA[Last week, all in the name of privacy, Google have decided to use SSL encryption for their search result pages<a href="http://www.greenpanda.co.uk/2011/10/google-hoarding-keyword-data/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>Last week, all in the name of privacy, Google have decided to use <a title="Google: Making Search more secure" href="http://googleblog.blogspot.com/2011/10/making-search-more-secure.html" target="_blank">SSL encryption for their search result pages</a> for all logged in Google users. For marketers and website owners, this will mainly affect our analysis of where our visitors come from.</p>
<p>Presently, we monitor the exact URL of the site that linked to ours. In the case of the Google search result page, this also tells us the search term used when finding our site.  We then monitor this data and can identify which words are most commonly used.  This list can help us target our marketing carefully and make the most of any budget we have.</p>
<p><span id="more-374"></span></p>
<p>So, what are they up to? Google&#8217;s comment about privacy seems a bit of a smokescreen, since it apparently doesn&#8217;t affect AdWords clicks. Advertisers will still be able to see keyword data, even from logged-in users, so can Google really be all that worried about privacy?</p>
<p>No, <a title="SEOBOOK: Google false privacy claims" href="http://www.seobook.com/false-privacy-claims" target="_blank">it has been suggested</a> that the real reason is based on hitting Google competitors in the online advertising arena.  Some companies are using the search keyword data to &#8220;retarget&#8221; ads based on what the user was searching for.  Simply put, when you search Google for something and click on to an article or blog post, the advertiser uses your search term to decide what adverts to show you.  This can then also be cookied, so that if you later visit other sites in the network, you can continue to be served adverts based on your earlier searches. It&#8217;s the same technology that is in use when you visit a clothing website and then read your Hotmail or go to TheSun.co.uk. You are then served adverts for the exact clothing chain as before, but this time with offers or incentives to encourage you to return.</p>
<p>This latest announcement will stop companies from using this data, but don&#8217;t believe that the data isn&#8217;t being collected &#8211; Google has its own targeted advertising networks which will still be able to access the data.</p>
<p>So, it seems Google are out for a bit of free PR on the back of an attempt to hinder their competitors. What should we do as marketers? <a title="Google: Linking Webmaster Tools to Google Analytics" href="http://www.google.com/support/webmasters/bin/answer.py?hl=en&amp;answer=1120006" target="_blank"> Link your Webmaster Tools to your Analytics account.</a> Webmaster Tools is nowhere near as accurate Analytics for keyword data, but it will continue to give you SOME data when the final changes are made.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/10/google-hoarding-keyword-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A first look at Google+: my top 5 features</title>
		<link>http://www.greenpanda.co.uk/2011/09/a-first-look-at-google-plus/</link>
		<comments>http://www.greenpanda.co.uk/2011/09/a-first-look-at-google-plus/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 11:37:34 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=355</guid>
		<description><![CDATA[So, it&#8217;s been a week now since Google kindly let me in on their big secret. I&#8217;d asked them politely<a href="http://www.greenpanda.co.uk/2011/09/a-first-look-at-google-plus/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>So, it&#8217;s been a week now since Google kindly let me in on their big secret.  I&#8217;d asked them politely months ago to let me in on the beta version, but they were happy to wait a while longer for my input!</p>
<p><img class="size-medium wp-image-360 alignleft" title="google_plus_logo" src="http://www.greenpanda.co.uk/wp-content/uploads/google_plus_logo-276x300.jpg" alt="" width="100" height="108" />First thing I&#8217;ve found is how hard it is to persuade friends to give it a go with me.  Even though Google has shown me that they have scanned my email account and found hundreds of contacts, I&#8217;m not willing to bulk-email all of them inviting them to join, primarily because most of them are business contacts.  It also seems that Google is happy to send invitations to all email addresses in my contacts, even though many friends have multiple email addresses and would therefore be encouraged to set up multiple accounts.</p>
<p>So, one week in and with only six friends signed up, I must say it&#8217;s pretty slow going. However, that doesn&#8217;t mean I haven&#8217;t been impressed with <em>anything</em>.  Here&#8217;s my top 5 features:<br />
<span id="more-355"></span></p>
<h3>1. Circles</h3>
<p>The circles feature is a big win. Not all your friends are friends with each other, or even know each other, so circles helps you keep track of who you are broadcasting and listening to.  The AJAX drag and drop page where you set up circles beats Facebook hands down because, as <a href="https://plus.google.com/100878023153399892844/about">someone</a> put it, &#8220;clicking check boxes is for old fogeys&#8221;.</p>
<h3>2. Hangouts with extras</h3>
<p>Still partly in development, Hangouts with extras is Google&#8217;s name for their latest features in Hangouts.  Best bits include Screensharing (show everyone a website, document or game in hangouts) and Sketchpad - A simple drawing tool, which all participants can use at the same time.</p>
<h3><img class="alignright size-medium wp-image-364" title="Lyra  meets Wellyphant!" src="http://www.greenpanda.co.uk/wp-content/uploads/11-3-300x225.jpg" alt="" width="180" height="135" />3. Mobile pictures uploaded immediately</h3>
<p>With the mobile app for Android, any photos I take on my phone are immediately uploaded to a safe place on the web.  This means that I can choose later which ones to share with my friends, and just store the rest for later.  Also means no more seeking out the cable to connect my phone to the PC &#8211; I&#8217;ll actually bother to use my phone camera again!</p>
<h3>4. Extended Google Bar</h3>
<p>Google has done some fine work on improving their navigation bar.  The new notification feature shows an interactive menu of the latest activity on your entire Google account.</p>
<h3>5. Whole user interface &#8211; very nicely done!</h3>
<p>I just love how smoothly everything works.  Yes there are a LOT of tooltips, but they don&#8217;t intrude on your experience, and actually open up a whole lot of functionality that I didn&#8217;t always realise was accessible from that page.  Altogether very well designed and I can imagine a lot of sites stealing ideas from this new UI.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/09/a-first-look-at-google-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Infographics are beating adverts for your customers&#8217; attention</title>
		<link>http://www.greenpanda.co.uk/2011/08/how-infographics-are-beating-adverts/</link>
		<comments>http://www.greenpanda.co.uk/2011/08/how-infographics-are-beating-adverts/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 11:43:14 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Top5]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=323</guid>
		<description><![CDATA[As marketing buzzwords go, &#8220;Infographic&#8221; is one of the top ones at the moment and these colourful illustrations are popping<a href="http://www.greenpanda.co.uk/2011/08/how-infographics-are-beating-adverts/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>As marketing buzzwords go, &#8220;Infographic&#8221; is one of the top ones at the moment and these colourful illustrations are popping up in blogs, websites and newspapers.  It is becoming more and more clear just how popular that are with audiences and <a href="https://twitter.com/#!/mashable/status/105898324489543680" target="_blank">some</a> go so far as to say they are performing better than adverts.<br />
<span id="more-323"></span><br />
Infographics (or Information Graphics) are best used when you have a clear and concise message to communicate, but have a lot of data to present which would otherwise be confusing or boring.</p>
<p>Our top tips for creating your own would be:</p>
<ul>
<li>Keep it simple</li>
<li>Use colour carefully &#8211; choosing your palette well is vital</li>
<li>Layout is key &#8211; Think of the graphic as a journey</li>
</ul>
<p>The kings of infographics have to be <a title="Mashable Infographics" href="http://mashable.com/follow/topics/mashable-infographics/" target="_blank">Mashable</a>, and here we have our Top 5 Mashable Infographics:</p>
<h3>1. Obsessed with Facebook</h3>
<p><a class="portfolio_link" style="margin-bottom: 10px;" href="http://mashable.com/2011/01/12/obsessed-with-facebook-infographic/" target="_blank"><img title="Obsessed with Facebook" src="http://www.greenpanda.co.uk/wp-content/uploads/infog-obsessed.jpg" alt="" width="522" height="220" /></a><br />
<div class="sc_divider top"><a href="#">Top</a></div></p>
<h3>2. The Apple Tree</h3>
<p><a class="portfolio_link" style="margin-bottom: 10px;" href="http://mashable.com/2011/07/18/apple-design-infographic/" target="_blank"><img title="The Apple Tree" src="http://www.greenpanda.co.uk/wp-content/uploads/infog-apple-tree.jpg" alt="" width="522" height="220" /></a><br />
<div class="sc_divider top"><a href="#">Top</a></div></p>
<h3>3. Social Network Wars</h3>
<p><a class="portfolio_link" style="margin-bottom: 10px;" href="http://mashable.com/2011/08/10/social-network-comparison/" target="_blank"><img title="Social Network Wars" src="http://www.greenpanda.co.uk/wp-content/uploads/infog-social.jpg" alt="" width="522" height="220" /></a><br />
<div class="sc_divider top"><a href="#">Top</a></div></p>
<h3>4. What&#8217;s Trending @Twitter?</h3>
<p><a class="portfolio_link" style="margin-bottom: 10px;" href="http://mashable.com/2011/08/20/twitter-infographic-2/" target="_blank"><img title="What's Trending @Twitter?" src="http://www.greenpanda.co.uk/wp-content/uploads/infog-twitter.jpg" alt="" width="522" height="220" /></a><br />
<div class="sc_divider top"><a href="#">Top</a></div></p>
<h3>5. Farmville Vs Real Farms</h3>
<p><a class="portfolio_link" style="margin-bottom: 10px;" href="http://mashable.com/2010/09/10/farmville-vs-real-farms-infographic/" target="_blank"><img title="Farmville Vs Real Farms" src="http://www.greenpanda.co.uk/wp-content/uploads/infog-farmville.jpg" alt="" width="522" height="220" /></a><br />
<div class="sc_divider top"><a href="#">Top</a></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/08/how-infographics-are-beating-adverts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 tips for your next Email Marketing campaign</title>
		<link>http://www.greenpanda.co.uk/2011/08/top-5-tips-for-your-next-email-marketing-campaign/</link>
		<comments>http://www.greenpanda.co.uk/2011/08/top-5-tips-for-your-next-email-marketing-campaign/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 08:11:34 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Top5]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=311</guid>
		<description><![CDATA[Many people class email marketing and spam as the same thing, yet it is still a very cost-effective and successful<a href="http://www.greenpanda.co.uk/2011/08/top-5-tips-for-your-next-email-marketing-campaign/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>Many people class email marketing and spam as the same thing, yet it is still a very cost-effective and successful marketing medium.  Not as sexy as Social Media Marketing, it has proven time and time again to <a title="Email offers retailers better results" href="http://www.webpronews.com/email-drives-more-traffic-to-retailer-websites-than-social-media-2011-02" target="_blank">drive more traffic</a>, especially for existing customers.</p>
<p>We&#8217;ve written our top 5 tips for making your next email marketing campaign your best one yet!<span id="more-311"></span></p>
<h2>1. Experiment with your subject line</h2>
<p>The subject line is your only chance to get your reader to open your email without deleting it as soon as it arrives in their inbox, so make it count!  If you have a list of 10, 000 addresses, try first sending the same email to two test groups of 1,000 each, but with different subject lines.  After a few hours you can see which one has performed the best and use it with the remaining 8,000 recipients.</p>
<p>It&#8217;s surprising the number of smaller companies who leave their subject line blank &#8211; DO NOT do this as this will boost your spam score and risk not ever getting to the recipient.  For the same reason, don&#8217;t use all capitals and only use one exclamation mark &#8211; or try to use none at all.</p>
<h2>2. Treat your data as sacred</h2>
<p>One of the best things about email marketing is that your list contains only those who are already interested &#8211; those who have subscribed.  It&#8217;s not like stuffing flyers through random letterboxes, or placing an ad in the local paper, here you have a bunch of people who have actually <em>asked</em> you to keep them updated with your business.</p>
<p>For this reason, it is highly important that you treat your data with respect.  Here&#8217;s a few suggestions on how to look after your data:</p>
<ul>
<li>Remove unsubscribers immediately.  People are funny about this sort of thing and it&#8217;s in your best interests anyway to make sure you don&#8217;t send marketing to someone who has specifically asked not to receive it.</li>
<li>Don&#8217;t be tempted to fix mistyped email addresses like &#8220;@hotmail.cmo&#8221;.  Email addresses are a private matter &#8211; instead make users re-type their email address on sign-up to double check they have typed it correctly.  If you are worried about people entering false email addresses (for a free download for example), put the download link in the auto-responding email &#8211; that way only real addresses will be able to be successful.</li>
<li>Check the reason for your bouncers &#8211; some may just have full inboxes (in which case leave them on the list for next time), but some email addresses may no longer be active.</li>
<li>Don&#8217;t sell your list &#8211; these are <em>your </em>customers and you should take care of them.  If you genuinely have a partner who has something of interest to your list, then why not mention them in your own newsletter?</li>
</ul>
<h2>3. Motivate people to join your list with a bonus</h2>
<p>Making users sign up can get increasingly difficult as people become ever more reluctant to give their personal email address away.  Free downloads, discount codes and free trials are all good ways of getting that email address in the first place.</p>
<h2>4. Be personal</h2>
<p>It has been suggested that simply starting your email with &#8220;Hi [subscriber_name]&#8221; instead of &#8220;Hi there&#8221; can increase reading and click-through rates by up to 650%.  Why?  It reminds your recipient that you already have a relationship with them &#8211; you&#8217;re not just another spammer.  If you only have their email address and no name, consider addressing it to &#8220;Dear Subscriber&#8221; (again showing that you already have a link) and following it up by explaining that you&#8217;d much prefer to greet them by name (they will prefer it, too).</p>
<h2>5. Just like in web design, be aware of &#8220;the fold&#8221;</h2>
<p>Most popular email clients (like Outlook and Thunderbird) use a preview pane to show the first part of the email.  Always have your best content at the top &#8211; If it’s interesting enough, then your subscriber will open your email and continue on reading.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/08/top-5-tips-for-your-next-email-marketing-campaign/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New address is now at Corby Enterprise Centre</title>
		<link>http://www.greenpanda.co.uk/2011/08/new-address/</link>
		<comments>http://www.greenpanda.co.uk/2011/08/new-address/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 10:14:13 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[GreenPandaIM]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=301</guid>
		<description><![CDATA[GreenPanda Internet Marketing is proud to announce our new address at Corby Enterprise Centre.  You can now contact us at:<a href="http://www.greenpanda.co.uk/2011/08/new-address/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>GreenPanda Internet Marketing is proud to announce our new address at Corby Enterprise Centre.  You can now contact us at:</p>
<blockquote><p>GreenPanda Internet Marketing,<br />
Corby Enterprise Centre,<br />
London Road,<br />
Priors Hall,<br />
Corby,<br />
Northamptonshire,<br />
NN17 5EU</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/08/new-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 mistakes to avoid in your Social Media Marketing plan</title>
		<link>http://www.greenpanda.co.uk/2011/08/top-5-mistakes-to-avoid-in-your-social-media-marketing-plan/</link>
		<comments>http://www.greenpanda.co.uk/2011/08/top-5-mistakes-to-avoid-in-your-social-media-marketing-plan/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 15:05:05 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Top5]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=285</guid>
		<description><![CDATA[We&#8217;ve all been told that social media marketing should be forming a big part of our marketing and communications strategies,<a href="http://www.greenpanda.co.uk/2011/08/top-5-mistakes-to-avoid-in-your-social-media-marketing-plan/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all been told that <a href="/services/social-media-marketing/">social media marketing</a> should be forming a big part of our marketing and communications strategies, but why are so many companies not getting the results they were looking for?  After all, it&#8217;s just Facebook, right? You&#8217;ve been using that for years!  It&#8217;s easy to see the value in engaging with your customers online, so why do your efforts seem to fall short?</p>
<p>We&#8217;ve put together the top 6 mistakes businesses are making when they start using social media in their marketing.<span id="more-285"></span></p>
<h2>1. Repetition</h2>
<p>If you only have one product or service, it&#8217;s easy to think that tweeting the same message once every week is fine as different people will see it each time.  Unfortunately, it&#8217;s more likely that potential customers will visit your Twitter or Facebook pages and see a long list of posts, all saying the same thing.  This will drive down your credibility pronto, so change your message!</p>
<h2>2. Thinking that social media is free advertising</h2>
<p>No business I&#8217;ve seen has managed to drive significant direct sales from a post on Twitter or Facebook.  That really shouldn&#8217;t be your objective.  Instead, try to make your Facebook page a place to discuss your brand and products.  A good review from a satisfied customer is worth 100 tweets from you saying how wonderful your product is.  Also, use Twitter to show your followers that you are an expert in your industry &#8211; comment on the industry topics of the day.</p>
<h2>3. Choosing the wrong media for your market</h2>
<p>Not every business suits every social media tool.  If your Facebook page has flopped and no one has &#8220;liked&#8221; you, then it may be that your industry just doesn&#8217;t use Facebook.  I have found that academic institutions often block Facebook, so if your target audience is university lecturers for example, you might want to try Twitter next.  Best to get rid of that embarrassing Facebook page, too!</p>
<h2>4. Constant spelling and grammar mistakes</h2>
<p>I&#8217;m not talking about the occasional typo here, we all do that.  If the idea of all the marketing is to make your business look professional, then sorting out your spelling should be a high priority.  A lot of people don&#8217;t put any value at all in spelling and don&#8217;t even notice mistakes, but beware &#8211; many are distracted, even offended sometimes, by bad spelling and grammar.  Spurious apostrophes (the likes of DVD&#8217;s and PDF&#8217;s should be DVDs and PDFs &#8211; but you knew that, eh?) can be so off-putting to some users that they close the page on first sight (I know because I&#8217;m one of them).  It sounds petty, but I promise it&#8217;s true.  Besides, it doesn&#8217;t take long to have your copy checked, or use Google Chrome or Mozilla Firefox which both come with built-in spell-check (you should be using one of these anyway, but that&#8217;s another story!).</p>
<h2>5. Thinking that your personal sites are personal</h2>
<p>Those who are interested in your company are likely to be interested in you and your employees as well.  As much fun as Facebook is, unless you&#8217;re VERY sure you&#8217;ve set up controls on who can see your content, don&#8217;t post holiday photos of you in your bikini, or comments on how much lager you downed last night.  This is especially true for consultants and sole-traders where your business <em>is</em> you &#8211; you are one and the same.</p>
<p>So, how many of these mistakes have you fallen foul of?  What changes will you make to improve your strategy and get SMM working for your business?  Have you make any other mistakes that we haven&#8217;t covered?  Why not share them on the comments below?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/08/top-5-mistakes-to-avoid-in-your-social-media-marketing-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google+ has some work to do if it is to compete for Social Media Marketing power</title>
		<link>http://www.greenpanda.co.uk/2011/08/google-has-some-work-to-do-in-social-media-marketing/</link>
		<comments>http://www.greenpanda.co.uk/2011/08/google-has-some-work-to-do-in-social-media-marketing/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 10:55:11 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google+]]></category>
		<category><![CDATA[Social Media Marketing]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=265</guid>
		<description><![CDATA[Although Google+ is announcing huge membership figures already (although you haven&#8217;t let me sign up yet, Google!!) this latest Social<a href="http://www.greenpanda.co.uk/2011/08/google-has-some-work-to-do-in-social-media-marketing/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<p>Although Google+ is announcing huge membership figures already (although you haven&#8217;t let me sign up yet, Google!!) this latest Social Network has a lot of work to do if it is to catch up with Facebook and become a real marketing tool.<br />
<span id="more-265"></span><br />
Despite initially suggesting that the network would provide a platform for businesses to connect to their customers, it seems that Google has now <a href="http://jmeh.com/V" target="_blank">warned businesses</a> not to create non-human profiles (ie. Business Pages). Not that it seems people are listening.  Business Pages are apparently cropping up even after Google themselves have deleted them.</p>
<h3>Hope ahead?</h3>
<p>There may be hope ahead, however, because according to <a href="http://jmeh.com/W" target="_blank">Christien Oestlien</a>, a member of the Google+ project, Business Pages are under development as we speak.  Well, thanks Christian &#8211; any chance it&#8217;ll be any time soon?  We expect Great Things™ from Google+ and we want to see them!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/08/google-has-some-work-to-do-in-social-media-marketing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Into the wild</title>
		<link>http://www.greenpanda.co.uk/2011/07/into-the-wild/</link>
		<comments>http://www.greenpanda.co.uk/2011/07/into-the-wild/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 11:57:56 +0000</pubDate>
		<dc:creator>Jack</dc:creator>
				<category><![CDATA[Latest News]]></category>

		<guid isPermaLink="false">http://www.greenpanda.co.uk/?p=152</guid>
		<description><![CDATA[It&#8217;s done.  It&#8217;s finally done! After a lot of deliberating, I have finally taken the plunge and set up my own<a href="http://www.greenpanda.co.uk/2011/07/into-the-wild/">(more...)</a>]]></description>
			<content:encoded><![CDATA[<h4>It&#8217;s done.  It&#8217;s finally done!</h4>
<p>After a lot of deliberating, I have finally taken the plunge and set up my own business. I won&#8217;t pretend I&#8217;m not nervous, but I am genuinely excited to be self-employed.</p>
<p><span id="more-152"></span></p>
<p><img class="alignright size-medium wp-image-156" title="greenpanda-logo-500" src="http://www.greenpanda.co.uk/wp-content/uploads/greenpanda-logo-5001-300x66.png" alt="" width="240" height="53" />My central aim for GreenPanda is to help small businesses connect to their customers with Social Media Marketing &#8211; something that I am convinced is a massive help to the right kind of business.  It&#8217;s also something that I believe a lot of business don&#8217;t know where to start!</p>
<p>I also have a number of other projects on the way (watch this space!) so being self-employed should hopefully free up some time to spend on those &#8211; as well as my new family!</p>
<p>Thanks for taking to time to visit my site today &#8211; if you have any questions, or think that we could help you and your business, please <a title="Contact Us" href="http://www.greenpanda.co.uk/contact-us/">contact us</a> today!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.greenpanda.co.uk/2011/07/into-the-wild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

