Social Media works if you make it work for you
Almost every week, I’m asked questions on the merit of social media. People are curious about why one would need to use facebook or twitter. My usual response is that social media works, but it only works if you make it work for you.
Of course it takes time and effort and you will need to moderate your social media accounts. Could you hire someone to do that for you? Sure, but you could also hire someone to look after your kids and raise them. Is that what you want?
In order to clearly explain what I mean by “making it work for you” I thought I would share what my process is and how I make it work for me.
Fortunately, I started early. I’ve been blogging since 2004, so blogging is part of my social media strategy. This strategy is no more than a word though. I don’t have a blogging schedule and I’m not very discipline. I write blog posts when I have something to say but I always write on topic.
This is how twitter works
With 2011 upon us, is one of your New Year’s resolution to finally come to grip with twitter?
I’ve been using twitter for several years now and absolutely love it. I’ve made friends, connected with like minded folks and of course kept up with all sorts of funny nonsense. I much prefer twitter over facebook. In fact I deleted most of my facebook friends and now only ever login to see what my nieces and nephew are up to.
Unlike facebook, twitter is a bit more difficult to grasp, but so much better for business, once you get it. I could have written a very long post explaining in detail how it works, but I discovered this morning, via one of my twitter followers, @ipstenu, this very detailed article on how twitter works. Written for moms, but not just for moms, Jessica explains everything you need to know about how twitter works.
Have a read and I hope that social media helps you grow your business in 2011.
Merry Christmas from Twitter
I get asked all the time, why I’m on twitter and what benefit I get from it. I’ve been using twitter actively for almost 2 years now and have made great connections and friends. But the main benefit of twitter is the amount of sharing that takes place.
Just in time for Christmas, Rafi from Graphic Fuel, has released a FREE Photoshop template for a blog design. You can read more about his design concept and download the PSD here. Based of a 960 grid, this PSD has everything you need to build your next blog design and is very well organized.

Display your latest tweet(s) on your website
I recently worked with Magnify Digital on a website for a very interesting group of people in the Fraser Valley. These folks are concerned about Air Quality and thus have come up with a website and community to address these issues.
A big part of the website was the social media aspect. Thus facebook, twitter and youtube feature prominently on the website. There are plenty of WordPress plugins that allow you to display your latest tweets, but I wanted a simpler solution. The following piece of code proved to be just what I needed:
<?php
$username = "yourTwitterUsername";
$limit = "1"; // Number of tweets to pull in.
/* These prefixes and suffixes will display before and after the entire block of tweets. */
$prefix = ""; // Prefix - some text you want displayed before all your tweets.
$suffix = ""; // Suffix - some text you want displayed after all your tweets.
$tweetprefix = "<p>"; // Prefix - some text you want displayed before each tweet.
$tweetsuffix = "</p>"; // Suffix - some text you want displayed after each tweet.
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=" . $limit;
function parse_feed($feed, $prefix, $tweetprefix, $tweetsuffix, $suffix) {
$feed = str_replace("<", "<", $feed);
$feed = str_replace(">", ">", $feed);
$feed = str_replace(""", "\"", $feed);
$feed = str_replace("'", "'", $feed);
$clean = explode("<content type=\"html\">", $feed);
$amount = count($clean) - 1;
echo $prefix;
for ($i = 1; $i <= $amount; $i++) {
$cleaner = explode("</content>", $clean[$i]);
echo $tweetprefix;
echo $cleaner[0];
echo $tweetsuffix;
}
echo $suffix;
}
$twitterFeed = file_get_contents($feed);
parse_feed($twitterFeed, $prefix, $tweetprefix, $tweetsuffix, $suffix);
?>
Social Media works in mysterious ways
I’ve participated in a few “Ask The Experts” panels in the past few months and couldn’t help but notice that Social Media is quite the hot topic right now. People are very keen in learning how to use Twitter, Facebook, Linkedin, etc… Most attendees are curious about how it works, why anyone would invest the time and energy, what’s the ROI and if it’s the right avenue for their business. These are all good questions and there are simply no easy answer. It really depends on who your audience is and where they are.
A funny thing happened to me last Friday which demonstrates how complicated and unpredictable it is to explain the power of Social Media.
I have a Twitter account and follow mostly designers and WordPress developers. This allows me to find out about latest tips, tutorials and website development news. Cameron Moll posted a tweet to a “mesmerizing” YouTube video which caught my attention. I clicked the link and watched a video taken at Kuroshio Sea which is the 2nd largest aquarium in the world.
The video is indeed breathtaking, but I was curious about the music. I watched and listened to the video a couple of times and wanted to find out who was singing. Using my iPhone, I Shazammed it and got the name of the song, band and album. A quick search on YouTube led me to a video of Barcelona singing live in San Diego. I watched a few more videos and decided to visit Barcelona’s page on MySpace. Listened to a few more clips and then I was off to iTunes and bought the album.
I’m not sure that a marketer could have predicted this, but I’m convinced that Social Media is worth investing in.
Add social bookmarking icons to your sidebar without using widgets
As social bookmarking sites such as Twitter, Facebook and Linked in become more and more popular, these days, I find myself being asked to make adjustments to several WordPress websites by adding social bookmarking links and icons to the sidebar. After 2 such web updates this week, I was asked by a friend to send me the code so that they could add it to their site. So instead of doing the work and sending it to him, I thought I would share it with you all.
The following examples are just code snippets that you can add to your sidebar.php template file. These snippets will not work if your website use sidebar widgets. (That’s not exactly true, but it’s a bit more complicated.)
The first example is very simple and can be seen live on the kitsilano.ca website.
First you’ll need to edit your sidebar.php template and add the following lines of code:
<h2>Follow Us</h2>
<ul>
<li class="rss">
<a href="[insert your rss link here]">Get our Feed</a>
</li>
<li class="twitter">
<a href="[insert your twitter link here]">On Twitter</a>
</li>
</ul>
Next you can adjust the styling by adding this piece of code to your style.css
#sidebar li.rss {background:url(images/rss.gif) 0 50% no-repeat;}
#sidebar li.twitter {background:url(images/twitter.gif) 0 50% no-repeat;}
#sidebar li.rss a, #sidebar li.twitter a {padding-left:20px;}
The icons will also have to be uploaded in your templates’ images folder. You can use your own icons or grab the ones that I’ve used by downloading the zip file.
The second example may look a bit more complex, but is just as easy and can be seen on the mudcreative.com sidebar.
First insert these lines of code in your sidebar.php:
<div id="social_media">
<h2>Follow Us</h2>
<ul>
<li><a href="[insert your link to linked in here]"><img src="<?php bloginfo('template_directory'); ?>/images/linkedin.png" alt="View our linked in profile" width="32" height="32" border="0" /></a></li>
<li><a href="[insert your link to twitter here]"><img src="<?php bloginfo('template_directory'); ?>/images/twitter.png" alt="On Twitter" width="32" height="32" border="0"></a></li>
<li><a href="[insert your link to rss feed here]"><img src="<?php bloginfo('template_directory'); ?>/images/rss.png" alt="Via our RSS feed" width="32" height="32" border="0" /></a></li>
<li><a href="[insert your link to facebook here]"><img src="<?php bloginfo('template_directory'); ?>/images/facebook.png" alt="On Facebook" width="32" height="32" border="0"></a></li>
</ul>
</div>
Next, add the following to your style.css
#social_media {
width:200px;
background:#F2F7F7;
border:1px solid #ACD0D1;
padding: 0 0 5px 0; margin-bottom:10px;
}
#social_media ul {list-style-type:none; margin:0 0 0 6px; padding:0;}
#social_media ul li {display:inline; padding: 0 6px 0 0;}
Depending on what your stylesheet already contains, you may need to make a few tweaks, but it should be pretty straightforward. Here is zip file with the code snippets and icons. Have fun.

