Ads 468x60px

ProBlogger: How to Identify Social Media Demographics & Target Viewer Interests for Better Social Reach

ProBlogger: How to Identify Social Media Demographics & Target Viewer Interests for Better Social Reach

Link to @ProBlogger

How to Identify Social Media Demographics & Target Viewer Interests for Better Social Reach

Posted: 29 May 2014 08:41 AM PDT

7910370882_39d180fb66_z

Image via flickr user Jason Howie

This is a guest contribution from Larry Alton.

There are social media demographics in general, and then there are your social media demographics for your business. You need to know the details of both in order to garner this platform for optimal gain. For instance, knowing that the majority of your followers are women in a certain age group means you can write your posts accordingly. Knowing that the majority of your fans live in a certain region means you can connect with them on a local level.

When it comes to identifying social media demographics, it's all about using that data to hone your online presence. It doesn't matter the platform; there are nuggets of gold in this data that can seriously boost your business. Start with considering the basic facts about social media in general. For example, the most popular platform is Facebook, followed by Twitter, Pinterest, YouTube and Google+ in a constant neck and neck race.

Back to basics

Facebook leans young, but there's been a 45 percent spike in those ages 45 to 54 joining the site sine 2012. In total 73% of people who make over $75,000 per year are on Facebook, as opposed to just 17% on Twitter. However, a shocking 86% of FB users aren't based in the US, making this prime pickings for businesses looking to go global.

With Instagram, now a part of Facebook, 68% of users are women. Twitter draws a young crowd with 27% of people in the US aged 18 to 29 using it, but only 16% of people who are in their 30s-40s tweet. If you're looking to market to a younger crowd, your efforts might be better spent on Twitter rather than Facebook.

Juicy tidbits

LinkedIn is largely male but has a global appeal. Of course, it's a more professional network, so you might want to steer clear of it if you're trying to monetize a Paleo blog or other similar pursuit. However, for the more traditional startup or business, having a LinkedIn profile is nearly a necessity. Google+ takes the cake for male domination with 70% of users.

Pinterest is the social media platform of choice for tablet users, with 84% of users being women. Tumblr is another strong contender for teens, so it's no surprise that only eight per cent of users have incomes over $75,000. What can you do with all this data? Manage it, analyze it and use it to craft your social media presence.

Know your users

There are analysis programs for certain platforms, including many provided (free) by the platforms themselves, which give you valuable information. For example, you can easily see which posts are most popular and which were most widely seen. You may also be able to get reports on the most active users in your network or other basic information on them.

Some of the most reputable social media analytic tools include Brandwatch, Google Analytics (a freebie), Local Response, and Moz Analytics. If you're on a tight budget, Google isn't fancy but it works, and the big social media platforms offer a variety of free analysis tools such as the free Facebook Competitive Analysis Report, Free Twitter Customer Service Analysis, or the Free Instagram User Report. Money can often play a role, but consider what information you need, not just the bottom line, to choose the right reporting tools.

Larry Alton is an independent business consultant specializing in social media trends, business, and entrepreneurship. Follow him on Twitter and LinkedIn.

 

Originally at: Blog Tips at ProBlogger
Build a Better Blog in 31 Days

How to Identify Social Media Demographics & Target Viewer Interests for Better Social Reach

Shoemoney - Skills To Pay The Bills

Shoemoney - Skills To Pay The Bills

Link to ShoeMoney

How I Increased My Click Through Rate By 75% With A Dynamic Countdown Timer In Adwords

Posted: 29 May 2014 06:32 AM PDT

Post image for How I Increased My Click Through Rate By 75% With A Dynamic Countdown Timer In Adwords

Many of us are familiar with dynamic keyword insertion, where you can replace text in an ad with the keyword searched. You no doubt noticed the crazy, funny dynamic ads of ebay…

What you probably aren’t aware of is the “Ad Parameterizer” feature within adwords. This nifty tool lets you dynamically change text in an ad using pretty much any variable you can put in a spreadsheet. For example, you can change your ad as your inventory changes, enabling you to say something like, “Only 3 left” or you can adjust it by the weather and say, “It’s above 90 Degrees outside, Doesn’t Ice Cream Sound Like a Good Idea?” . You can pretty much go wild and use your imagination.

This is one of the little known features within Adwords.

It is an Adwords Script, which is a tool that lets you use Javascript to make changes to your account, ads, set alerts, and all sorts of nifty tricks. Let’s be honest, marketing is changing quicker than you can read this sentence. If you stop and smell the roses, someone will jump ahead of you. If you want to stay ahead you have to have a dynamic strategy that moves as quick as the world around us. One great way to stay ahead is to utilize the full power of Adwords and deploy a bunch of scripts. You don’t need to be a programmer, you just need to know how to copy, paste, and read English. In fact, Google actually wrote a bunch of scripts, so if You don’t know how to write JavaScript you can still run these scripts just by copying and pasting the code. One of my clients is my Dad’s business. I tried my hardest not to take on this account because there’s nothing worse than having your mom call you asking how their campaigns are doing :( All in all though, family comes first, so I reluctantly dove in to help out. My dad and his business are experts on medicare reimbursements and preparing the required medicare and medicaid cost reports for nursing homes, hospitals and home health agencies. They offer preparation of cost reports as well as a software for accountants to prepare cost reports on their own and even offer training sessions to help operators prepare their own medicare cost reports. There is a HUGE deadline this coming Monday for submitted your Medicare cost reports, so I used a countdown timer in their ads. Check it out.

Here is what you see when you search in Google for Medicare Cost Reports.

Every hour that ad changes dynamically. This was a script written by Google meant for businesses to run a sale countdown.

Pretty awesome, Huh? But, let’s get down to brass tax, did it really help? Well, the data sample is small, so I am reluctant to say this is statistically significant, but look at the difference in Click Through Rates.

Ok, You See How I boosted Click Through Rates By Close to 75%, and cut CPC by 8%

Here’s step by step instructions for you to deploy the same script… (or you can follow Google’s Directions like I did.)

First, here’s how to setup an Adwords Script in your account.

Start by logging in to Adwords. On your left side you will see a menu of items including, All Online Campaigns, Shared Library, Bulk Operations, Reports & Uploads, and Labels. You want to click on “Bulk Operations,” and a new menu will appear with a few options. Choose the one that says “Scripts”

Now, You will need to click on the “+ Script” button to create a new script. Here is what your screen should look like…

The first thing you should do on this page is name your script. Then, you need to copy and paste the code for this script into the main area where it says, ” function main ()  ( ” You will copy and paste the following code below, just keep in mind you will need to modify two small details which I will highlight and discuss after posting the script.

// Date to use to find out how many days are remaining. var END_DATE = new Date(‘June 2, 2014′); // Change this to the Ad Group you set up with text ads with AdParams. var AD_GROUP_NAME = ['Medicare Cost Report']; function main() { var timeLeft = calculateTimeLeftUntil(END_DATE); var adGroup = getAdGroup(AD_GROUP_NAME); var keywords = adGroup.keywords().get(); while (keywords.hasNext()) { var keyword = keywords.next(); // We want to update {param1} to use our calculated days and {param2} for hours. keyword.setAdParam(1, timeLeft['days']); keyword.setAdParam(2, timeLeft['hours']); } } var DAY_IN_MILLISECONDS = 1000*60*60*24; function calculateTimeLeftUntil(end) { var current = new Date(); var timeLeft = {}; var daysFloat = (end – current) / (DAY_IN_MILLISECONDS); timeLeft['days'] = Math.floor(daysFloat); timeLeft['hours'] = Math.floor(24 * (daysFloat – timeLeft['days'])); return timeLeft; } function getAdGroup(name) { var adGroupIterator = AdWordsApp.adGroups() .withCondition(‘Name = “‘ + name + ‘”‘) .withLimit(1) .get(); if (adGroupIterator.hasNext()) { return adGroupIterator.next(); } }

Just copy and paste that code into the script section. For your purposes you only need to modify two small details. First, you need to change the date to the time you want your countdown timer to run until and you need to tell the script which adgroup to run the timer within. There is a way to do this on a campaign level which you can read about in the Adwords Scripts documentation linked above. Now you will need to Authorize the script to access your account, and save the script. When you click save it will ask you if you want to preview it. This is a good idea because it will tell you if there are errors or not. If there are errors, there is an official Adwords scripts community that you can tap into for help. Once the script is saved you need to tell Adwords how often to run the script. Since my script countdowns by the hour, I set it to run once an hour. Here is how to do that.

Once your script is saved and ready to run, you need to Click RUN to let Google know to start running the script. Finally, You need an ad that the script will modify, so you need to add ad parameters into your ad. Here is an example…

Only {param1:a few} days {param2:and} hours left!

Just like dynamic keyword insertion, you need to tell Google what to display if the countdown timer isn’t working. That’s what the text after the colons are. You’re all set . You can even check in the Ad Preview Tool if it’s working or not. What ideas can you think of for using the Ad Parameterizer feature? I bet there are some pretty creative ways to modify ads based on the news, or what’s going on in People’s lives, etc… Share your ideas in the Comments. I’ll get you started. 1. Countdown to a sale 2. Change ad by weather 3. change ad based on inventory 4. Change ad based on price 5. change special offer 6-100. ???

You Know What… I’ll Do You One Better Than Step By Step Instructions. I WILL DEPLOY THIS SCRIPT FOR YOU.

Here, Let Me Do That For You. Why Would I do it for you? What’s the catch? You have to be willing to let me publish a case study of the results on Shoemoney. Click below if you are interested. Yes, Please Setup a Countdown Timer Adwords Script For Me.