Social Media – Doing it Right

This article explores some of the most useful aspects of social media for a brand or product. I’ve used Australian based organisations to demonstrate some of the principles both what I consider to be successful or well implemented strategies and those I consider could have been done better.

There are two aspects to social media, in my opinion they are engagement and word-of-mouth.

Social media is a conversation, not a broadcast. Imagine yourself running into someone on the street, they start a conversation and you respond by semi-regularly blurting out some information, completely unrelated to what they’re saying – this is the situation when an organisation adopts social media as purely a marketing tool. You’ll very quickly lose the attention of your customers and they’ll tune out just as you would lose the attention of the person on the street.

If you have a need to broadcast this kind of information on social media, mark it as such – try to avoid mixing your conversation and your “broadcast stream”. Allow your customers to opt in to your broadcast stream if they want to, but don’t make them put up with it just to engage with you.

Coles Supermarkets has done this successfully, by providing no illusions that customers will have any feedback from their twitter efforts. The account name speaks for itself: @ColesSpecials.

Social media is a continual effort. If you have made a strategic decision to discontinue engaging on a platform, ensure the users of that platform are aware of that decision and where they can continue to receive the same service (even if it’s telephone, email or letter writing).

Coles got this wrong with their efforts on Facebook. They have a Facebook page, but it has one update, dated August 2009. It reads “Good Day Customers! Please invite your mates & spread the word around…ThankYou”, they got over 700 fans, but haven’t done anything with it since.

Woolworths Supermarkets also got this wrong with their twitter presence. The @Woolworths account contains one tweet dated 25th July 2008. It simply contains the URL to their website. I’m guessing Woolworths is just name squatting their twitter account.

Australia’s largest two telcos (Telstra and Optus) have implemented very successful twitter strategies, with their twitter accounts @Telstra and @Optus respectively. Both don’t provide any marketing material, but use these twitter accounts to engage with their customers, even if it’s as simple as answering with a “Fill in your details here, and we’ll get back to you” with a link to a web form. Optus’ replies are always personalised, individually typed and signed by a staff members name (I don’t personally follow Telstra).

The next example I want to take a look at is the Australian Broadcasting Corporation (ABC). They seem fantastic at replying to tweets like this one:

@whatiris: Holy balls ABC2 has an outstanding collection of shows! @whatiris tweet
@ABCTV_australia: @whatiris why thank you – we try to please @abctv_australia tweet

But a recent tweet from me asking them why a scheduled program wasn’t shown and if they would re-schedule it went un-answered. As a consumer that sends me a strong signal that the ABC aren’t willing to engage with me unless I’m telling them something they want to hear.

Pro-actively monitor social media. It is important to monitor what the market is saying about you. This allows you to keep your finger on the pulse of how people are reacting to your organisation. Are most people seeing your service and product as favorable? Do most of your customers have negative things to say about you.

It’s important here to remember we’re looking for things that people are saying about you, not to you. But even more importantly are you prepared to listen? Monitoring social media gives you the ability to see into the minds of your customers, happy or not. If they’re not – be prepared to do something about it, even if that is as little as engaging with them, constructively. If they are happy, you can simply let them know you appreciate them, their sentiments and are there if they have questions or need your support.

Utilize tools to notify you when you’re organisation or product is mentioned on twitter or on any web page (Google Alerts is good for this).

The Commonwealth Bank in Australia do this, and have demonstrated it to perfection. One single tweet from a customer, out of frustration about the loan approval process, including the word f@#!ing. In less than two hours a representative from the CBA contacted them and resolved the issue.

This customer would have potentially for the foreseeable future mentioned their bad experience with the CBA every time somebody mentioned home loans to them. Turning it around the CBA ended up with a happy customer who will instead recount their positive experiences with the CBA in those same situations.

I encourage any organisation to message back every mention of your brand, publicly. But ensure the conversation is taken privately (telephone, email, Direct Message) when details and personal information needs to be shared.

I’m personally prepared to be a walking (or tweeting) billboard for any company who does right by me, it costs them nothing more than the above average ability to service my needs at a price I’m willing to pay. If a company exceeds my expectations I will tell my friends about it, publicly. However I’m more than happy to voice my concerns or issues with an organisation in the same way.

Demo and Examples

My new “Demo and Examples” site is up and running and can be found at http://example.jaredquinn.info.

It currently contains:

  • PeopleDB – a simple Javascript/AJAX/PHP Database
  • Facebook Slideshow – an example of using Facebook Connect

The entire demo site is powered by a tiny custom PHP framework which I’m dubbing “my PHP tinyFramework” (for now, it needs a lot more work but handles this examples site perfectly). The entire site can be downloaded from within the environment, which is zipped up live as required (and therefore always up to date).

A changelog can also be found on the front page.

I will probably put the entire site up on github at some point in the near future.

Happy Holidays

Christmas lunch is just settling in my stomach, and it’s a drizzly afternoon here in Newcastle, NSW, Australia as I write this. I took December off work and have been busy relaxing and catching up on some unwatched TV from the last few months.

I wanted to take this opportunity to wish all a very merry Christmas and a happy, safe and festive holiday season. I look forward to getting back to work and reguarly writing again in 2010.

P.S. I’m really looking forward to the HTC/Google Nexus One phone due for release soon.

jQuery Tip: Radio Button Deselection

As a web developers we sometimes get things thrown at us that for whatever reason it makes sense for the behavior of something to be changed.  Normally I push back in these situations waving the big User Experience stick at people, but sometimes the request actually  makes sense.

Recently while working on a survey page for a client that was entirely radio button driven I was asked for the ability to allow a user to de-select a radio button.  The answers Google returned for me mostly said “radio buttons should always have one value, they aren’t designed for de-selection.”

The problem with this particular set of buttons was it was the weighting in the survey the user assigned to the ‘Other’ field.  If the user selected a radio button they were then forced to have to enter their own text with no way of deciding the no longer wanted to enter an optional “other” item.  This was also the only optional field in the entire survey.  The other problem was purely aesthetic with a “no selection” selection not working with the design.  It was decided a second click on the radio button would de-select the selection.

I thought it would be easy – I’ll just cancel the onClick event on that object.  Unfortunately Firefox didn’t like that idea.  It seems that when the onClick event is fired, the radio button is already selected, so retrieving the previous selection’s value didn’t work.  The way I dealt with this was a two-pronged approach using both the mouseDown and click events.

Implementation

Firstly I added a new radio button with “display: none” and gave it a value of 0 so that I had something to select, this should go before the other radio buttons in the group as it’s referenced as index 0 using .eq(0).

       <input type="radio" name="q1e" style="display: none;" value="0" />

And the jQuery magic to make the de-selection happen:


       $('[name=q1e]').mousedown( function() {
		$(this).data('previous', $('[name=q1e]:checked').val() );
	});

	$('[name=q1e]').click( function(e) {
		if( $(this).val() == $(this).data('previous') ) {
			$('[name=q1e]').eq(0).attr('checked', true);
			$(this).blur();
			e.preventDefault()
		}
	});

Are you mobile friendly?

Verizon has reportedly sold over 100,000 Motorola Droid handsets on the first weekend they went on sale. 1

Apple’s iPhone allegedly smashed the 10,000,000 (that is ten million) sales during 2008. 2

These statistics are phenomenal, there are a huge number of devices out there in users hands that I feel are being neglected when it comes to general web development, digital campaigns and online marketing.  Sure there are various services that cater specifically for these platforms, the likes of AdMob which has been recently acquired by Google.

There has been around 10 new Android handsets announced for the last quarter of 2008 or early 2009 – smart-phones are quickly replacing all other handsets out there.  Networks are continually being upgraded and data speeds to these devices are increasing all the time.

What is lacking however is consideration for these devices when developing digital campaigns.

Most web campaigns seem to focus on the desktop user, where there is gradual trend away from desktop based web surfing to hand-held devices (smart-phones, portable Internet enabled gaming devices and PDAs) and lounge-room based devices.  Over the last month alone mobile-based web surfing has risen from 0.6% of all traffic to around 1.6% of all traffic. 3

Is your website ready to handle this?   I do a large portion of my web surfing from my HTC Magic Android based smart-phone and it continually surprises me how many websites do not cater sufficiently for mobile platforms.   While I’m a huge fan of the services of my carrier, Optus (a SingTel company) here in Australia even they fail in some aspects.  They run a regular “Bonus Rewards” campaign for every pre-paid recharge over $30.00.  Once you recharge a code is delivered via SMS which needs to be entered into their website.    They earn some points for providing a non-Flash based version of this site, but even the standard web version does not render adequately on the Android browser (and probably not on the iPhone browser either, both being Apple Webkit based browsers).  Important parts of the page are rendered outside of the margin and are almost completely in-accessible.   This is something that I would have assumed would have been designed to be used by mobile Internet enabled devices – isn’t that what they’re trying to sell?

More and more digital agencies seem to be focused on Adobe Flash based  content online.   Not only is this horrible for Search Engine Optimization it really causes issues with portable devices – most of which currently do not offer any flash based support (though I hear rumours that this is changing in the near future on both Android and iPhone based platforms).  Even if there is flash support, most of these campaigns or sites are designed specifically for very large screen sizes, which again would make them almost unusable.

Digital agencies and designers need to start taking notice of this, as they are already forcing a large portion of their potential audience to “come back later, when you’re on a real computer”.   However, I do understand I am probably in the minority right now as far as users who consume most of their online content on a 3.2″.

I’m writing this as my first article in a freshly re-vamped site, complete with CrowdFavourite’s WordPress Mobile Edition plug-in, providing a very nice mobile based interface for browsing WordPress blogs – I encourage anyone out there with a WordPress based blog to install this simple plug-in to easily accommodate the mobile user.  I’m sure other publishing platforms provide this too.

I can understand also that glitzy designed campaigns and competitions making extensive use of Flash for their user interfaces aren’t going to disappear any time soon (I personally work on the back-end of many such campaigns),  little needs to be done to make these sites or interfaces standard and mobile web friendly.  I’m not suggesting the entire user experience needs to be provided on a small scale – however the core information and perhaps even core functionality of a site can be provided to a user, with minimal additional effort.

References

  1. Computerworld: Verizon Sold 100,000 Droids over first weekend.
  2. AppleLot: iPhone to smash 10,000,000 sales in 2008
  3. StatCounter.com: Desktop vs Mobile Oct 2009-Nov 2009