We talked about landing pages at Unchained: When someone who is interested in relocating to Phoenix lands on our brokerage weblog, I want for that party to land on my relocation page, rather than just at the top of the blog. Why? Because if I provide the exact information my visitor is looking for, I have a much better chance of converting that person into a client.
This is important: Social media marketing is direct marketing — target marketing, not viral marketing. WordPress sells itself by viral marketing. You sell your business on a WordPress weblog by direct marketing, by focusing your attentions on particular, identifiable prospects. Of all the people writing on BloodhoundBlog, the on who has the most to teach us about this is Richard Riccelli, Delphic and sphinx-like but overflowing with brilliant direct marketing ideas.
So what’s better than a landing page? Richard can beat me up, if he wants, for getting this all wrong, but the direct marketer’s answer is simple: Better than a landing page are two landing pages — pitted against each other.
Advertising is a prayer to the heavens, but direct marketing is testable. Is long copy more effective that than a shorter appeal? Test it. Will a question or a promise work better as the headline? Test it. Do brief forms produce more leads? Do more rigorous forms produce stronger leads? These are testable propositions.
But: There is a caveat: You have to be getting enough traffic to make testing worthwhile. If your long copy beats your short copy two-to-one, it means nothing if you only have three instances to judge from. A Google Adwords campaign is eminently testable, as is a Zillow EZ Ads promotion. On your hyperlocal real estate weblog, you may have to let your tests run for a while before you draw any conclusions.
And what should you do when you do prove that one way works better than another? Test two variations of the winning strategy against each other. And test everything else while you’re at it.
Okayfine. There is no limit to what you can learn about direct marketing, and Brian and I going to do a ton on it in Orlando. Here are one, two, three Amazon.com book lists on on-line direct marketing. Your time is finite, I know, but this, like everything, is a leverageable problem: Focus your attention on the pages and forms that can make you the most money right away, then sweat the smaller stuff later.
That’s the what. Here’s the how. Yesterday in email, I suggested to Chris Johnson that he should be testing some of his landing pages at Loan Officer Survival Training. At his personal weblog, Chris said:
What I must do is make sure that EVERYTHING leads to one or two pages (set up for A/B testing as kindly suggested by Greg, more PHP to learn), and that those one or two pages are the best representation of me–and what I want–that they can be, tested, vetted, refined, perfected.
Chris has probably already written the code he needs. This is a very simple problem in PHP. Here is a very simple routine to redirect inbound traffic to one of two testing pages:
<?PHP if (rand (0,1)) include ("TestVersionA.php"); else include ("TestVersionB.php"); ?>
You can see this in action by clicking here. Just keep refreshing to watch it work; it’s a simple coin flip. The code shown above would have the URL of the landing page, and then the two (or more) testing versions would be uniquely named. The end user will see the same URL in any case. The pages you are testing will need some kind of key for you to compare their respective responses — a different email subject line, for instance, or simply a “coupon code” in the form response to distinguish one version from the other.
There are three kinds of web-based marketers who can profit from this kind of A/B direct marketing testing:
- If your current results are lousy, you can figure out what you are doing wrong
- If your current results are mediocre, you can figure out how to make them better
- If your current results are fantastic, you can figure out how to kick your own ass
Advertising at its best is religion. Marketing at its best is science. This kind of A/B testing of your persuasive tools is the threshold of marketing as a science.
Amending this: The code I’m showing above is workable and easy to deploy, but I don’t love it. This is almost as simple but more supple and more subtle:
<?PHP if (rand (0,1)) { ?> <!-- Version A: Insert any valid HTML --> <?PHP } else { ?> <!-- Version B: Insert any valid HTML --> <?PHP } ?>
You can use that in any spot within a page where you want to test alternate versions of text or a form. For the landing page job we’re talking about, both versions of the page can be within the same one PHP file. But if you wanted to test alternate versions of a response form, you could do that test within an otherwise static page. This now becomes so easy that I will caution you against testing too many things at once. I could show you how to build a response key in PHP so you could see which one of your 32 possible variations scored — but I think that’s way too much testing to yield reliable results.
Further notice: Richard Riccelli sent me a note telling me I’m all wet, which is no doubt true, but here is a further refinement on this idea. My belief is that a strong net-based lead comes from someone who has taken some care to find out about us. So one thing we could do is lay down a cookie for each mission-critical page on our site (including testing variations), increment that cookie every time that visitor comes to that page a subsequent time, then report out that entire cookie history when the visitor submits a form. Over the long run, we would be able to correlate completed transactions to page views to find out who really is more likely to act — the ants or the grasshoppers.
Technorati Tags: blogging, real estate, real estate marketing, real estate training, technology
Eric Blackwell says:
This might be speaking in tongues, but it is PROFOUND. When I was at PubCon in December, the google engineers were demo’ing Google Website Optimizer (which is essentially this method on STEROIDS).
For sites (and now WP blogs using a plugin to assist-I am testing it out now)you can do A/B and multivariate testing and it does all of the fancy calcs and tells you whether your experiments results are statistically significant.
You are exactly right, Greg. It is a road map to kick your own ass…at whatever level that is. And that is a GOOD thing…perhaps tweak a call to action and double the response? Not bad…
The thing I like about Google website optimizer is that you actually can do multivariate testing (multiple changes to see which factors provide the impetus to get to a desired result).
Thank you for a simple A/B test though. That will come in handy for a couple of projects with our blogging group.
June 14, 2008 — 12:25 pm
Eric Blackwell says:
Further note–to be worth the time, you need to have significant traffic coming into a site and most of our blogs work on a much smaller scale than that needed to get statistical significance.
For those with sites and who track conversions and inquiries, that is where this type of thing comes more into play IMO.
June 14, 2008 — 12:29 pm
Genuine Chris Johnson says:
All of this is moot without traffic.
Traffic isn’t around without good content…
June 14, 2008 — 4:29 pm
Mike Taylor says:
Pretty cool stuff, I never knew you could do that. The only problem I see, it what if you user navigates to a different page and contacts you that way. Then your test data becomes flawed and may lead you to incorrect conclusions.
June 16, 2008 — 6:09 am
Greg Swann says:
> The only problem I see, it what if you user navigates to a different page and contacts you that way.
That’s why tracking the visitation history could be valuable. The real way to do this is with session IDs, but that’s a more complicated solution.
June 16, 2008 — 6:18 am
G. Dewald says:
I’m with Blackwell: Awesome that you did this, but give Optimizer a try. It splits out your traffic, allows multivariate and runs the test until you have results of statistical significance (which could be awhile depending on your traffic volume and responses).
June 16, 2008 — 1:38 pm
Greg Swann says:
> I’m with Blackwell: Awesome that you did this, but give Optimizer a try.
I looked at it briefly on Saturday. Is it Adwords-specific, or does it just live in the same batcave?
Richard Riccelli fingered this, which is making me drool: MarketingSherpa’s Landing Page Handbook. We’re having a decent June. I’d love to latch onto this.
June 16, 2008 — 1:45 pm
G. Dewald says:
Just lives in the same Bat Cave: Google help about Optimizer
While I’m at it, here’s an article that will be useful whether you Greg’s code or Optimizer or something else:
Experimentation and testing, a primer
June 16, 2008 — 1:55 pm
Steve Leung says:
For folks who don’t have the time to implement cookie tracking or session IDs, the first piece of code actually integrates better with your analytics tools (e.g. Google Analytics, StatCounter, etc.).
Say each landing page has no other outgoing links (best practice) and one contact form that leads to a success page… your tools will pick up which landing page leads to the success page more. It’s not as robust as path tracking (check your privacy policies) but it’s quick and accessible.
June 18, 2008 — 12:53 am