Connect with us

Marketing

5 Easy Tips For Writing Landing Pages That Convert

Published

on

For online businesses, landing pages are without doubt the most important piece of puzzle. You need pages that not only convert readers, but deliver sales too.

The writing has to pull the readers in and generate conversion, ultimately resulting in a transaction.

Successful copywriters possess special skills that they’ve honed over the years. But the best thing is that you too can learn these techniques. Learn, and in time, master them. There are simple techniques at play here, and you can use these to create copy like an absolute pro.

Here are 5 basic tips on how to write landing pages that convert:

Benefits, not the solution

This is perhaps the most essential of lessons, but for better or for worse, not everyone follow it. Customers don’t really care about the products or service that you are offering. Fact. They don’t want to find out the solution you’re trying to sell.

Thing is, they already know the solution they need — they already have an idea of what they want. Thanks to the power of the web (and now social media), not only do people know the solution, they also have an idea of the kind of features and pricing that they are in for.

Your task is simply to lead in with benefits in your landing pages. Highlight the advantages people will get when they sign up or make a purchase with you. Benefits trump solutions, every time.

Killer headlines

People don’t really read your landing page from first pixel to the last. They scan the headlines, they skim the captions, the titles. Pay special attention to your headline, the sub headlines, and your call to action buttons, as these are the elements readers focus on the most.

If these hold their interest, starting out, they’ll read the major sections next, bullet points, short paragraphs, stylized text (bold, italics or underlined) and even image captions.

Focus on optimizing these as you write your conversion copy, and build around them.

Customer testimonials

Almost all (good) landing pages have some form of customer testimonials one way or another. This is really powerful stuff because basically, you’re not writing your conversion copy here, your customers are. Goes without saying, then, that testimonials produce conversions like nothing else.

These snippets of information from your buyers and subscribers are compelling. They’re golden. Paste them front and center if you can, on the landing pages you create, with pictures of your customers, for even better results.

Ask for action

This impressive technique is so simple, yet so overlooked. If you don’t ask for conversions, you’ll not get them. Everything you do (writing and design) should be focused on getting that final conversion, whether that is signing up for your newsletter, or subscribing to your service, buying your product.

Always keep this end goal in mind, and strategically place your call to actions throughout your copy.

Keep the writing simple

If you’re doing the writing yourself, it’s easy to fall into the trap of overly complicating things and using all manner of jargon and buzzwords. Even if you are a high caliber writer, your literary prowess is useless when it comes to copywriting.

Remember, your audience is going for simplicity — so should you.

Write short, simple and clear statements, free of clichés. A minimal sentence structure helps, short words don’t hurt, and not being overly fancy enriches the outcomes. Point being, if you can be simple in writing, you can write great conversion copy and create remarkable landing pages.

Melanie Russell is a seasoned online business reporter and has been writing about the web for as long as she can remember.

Click to comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Editorial

Who approved never get Hulu as an ad slogan?

I’ve seen some DUMB ad campaigns in my life but Never Get Hulu is by far the worst one I have ever seen in my life.

Published

on

Never get Hulu

I was watching the Emmys last week and then an ad came on.

It had a ton of celebrities who were serious and telling me to listen and pay attention.

They start to talk somewhat comedically about a bunch of things I should never do – never fly first class, never get a king size bed, never get a walk in closet etc etc.

At this point, there are hints of comedy creeping in…

Until the final punch line “..and most importantly Never Get Hulu”.

My wife and I are marketing professionals and immediately looked at each other thinking the same exact thing.

Who at Hulu gave the green light to this ad?

Why would you get people’s attention and use the words “Never” and your brand name in the same sentence? From a marketing perspective this seems extremely stupid.

Yes, it gets people like me writing about this and talking about it and sharing the ad. Got it.

HOWEVER, it imprints very negative keywords next to your brand name into people’s psyche’s forever.

Never Get Hulu.

I absolutely don’t get it but hey what do I know, maybe they know something I don’t so I should probably take their advice.

I DEFINITELY won’t get Hulu.

Continue Reading

Caching

Digital Marketing Tip – Implement Fragment Caching

Fragment caching works by identifying sections of code, which take up time and resources, and caching just those sections.

Published

on

Implement fragment caching

As far as performance goes, WordPress is brilliant for a smaller website, right out of the box. Your front-end pages load very quickly, data is retrieved from the database and saved to it very fast on the back-end.

But, when you try to add loads of content, with loads of metadata for every post, then you will start to see things slow down, considerably. This is quite common and there are plenty of ways to sort the problem out.

Use a Caching Plugin

Caching plugins are the most used tools on WordPress websites, a way of speeding things up and there are plenty to choose from.

Each plugin has its own approach but, overall, the bit that slows everything down, i.e. a page that needs to load, is placed in a temporary location for storage.

That way, when the page is requested again, it can be retrieved much quicker because the stored page is called on instead of the front-end page having to be loaded each time.

However, once this storage reaches an age which is determined beforehand it will be removed and then recached to make sure users don’t get old data.

Some of the best plugins for this are:

  • W3 Total Cache
  • W3 Super Cache
  • WP Fastest Cache

Because each has its own method of doing things, each plugin has its own set of pros and cons. Overall, the popular solutions have one common problem – they cannot cache data for a logged in user.

This might seem to be something of an oversight; after all, why cache data if your editors or your users won’t see the benefit? It might interest you to know that this has been left out intentionally and for a very good reason.

Imagine that your website has exclusive content that is only for subscribers who pay for it. If you cache the data for this content, there is a good chance that you could serve it to users who do not pay for it which allows anyone to get your content without subscribing.

So, does this mean that a website driven by membership cannot take advantage of caching? Of course, they can.

This is where fragment caching comes in.

What is Fragment Caching?

In the scenario above, we cannot cache all the content on a whole page load, but we can still use caching. Fragment caching works by identifying sections of code, which take up time and resources, and caching just those sections.

This means your unpaid subscribers don’t get to see the content reserved for those who pay.

How much time you can save will depend on how many fragments are cached but, where you have a large and complex website, the time savings will soon add up.

How do we implement fragment caching? Very easily, thanks to something called the Transients API. This is a storage method for temporary data that has an arbitrary timeframe.

Have a look at this example:

// Get an existing copy of transient data, if there is one
if ( false === ( $foo = get_transient( ‘foo_transient’ ) ) ) {
// Nothing was found or the transient has expired; regenerate it!
$foo = someExpensiveCodeOrQuery();
set_transient( ‘foo_transient’, $foo, 2*HOUR_IN_SECONDS );
}
// Use $foo somehow

On the second line, we have called a method called get_transient and this will try to pull up the cached value for foo_transient. If there is a transient and it is still in date, the cached value is returned and the code will then move to the seventh line.

If no value is found, a value of false is returned and the third, fourth and fifth lines will then be executed. The result is $foo being saved under the name of foo_transient and an expiration time of two hours is added.

Fragment caching is not a method to fix everything but it can be an incredibly useful tool for reducing page loading by seconds and, as we all know where page loading times are concerned, every second counts.

Combine fragment caching with other methods of speeding up WordPress for significant gains in speed.

Continue Reading

Editorial

The ONE skill most digital entrepreneurs do not have

After many years of mentoring digital entrepreneurs, I find that there is constantly one core skill they do not start with…

Published

on

Writing skill entrepreneurs

Over the past decade, I have had the privilege of being a digital marketing mentor to a lot of MBA students and entrepreneurs.

I have always loved being able to help people who are just discovering what the internet can do for their businesses and how thinking asymmetrically can create growth and profits online.

In the process of mentoring a lot of these awesome people, I started to see a common trend and it profoundly affected me and has made me rethink everything about the way I teach digital business.

The internet is awesome.

It’s made it possible for an entrepreneur or a small team of people to create websites and online applications that compete against much larger businesses. This because they have mastered some skillset that is in demand and have figured out how to share it profitably with the rest of the world.

I used to believe that when entrepreneurs are starting to learn about starting an online business, they needed to learn everything about business, tools, terminology and technology.

While those are all important, there is one critical skillset that is often missed when people are learning to build digital businesses.

The ability to write properly and eloquently.

Frustrated writer

I have been stunned and shocked to see people who can master every other component of digital marketing be so intimidated by a blank screen or sheet of paper.

Lots of entrepreneurs are terrified of writing. They love building products, selling products, tinkering with website elements, landing pages and doing everything else but they are scared to actually learn how to write compelling content.

The irony is, they love consuming content from other writers!

My story

When I built one of my successful online businesses, it was based on Microsoft Windows. I realized that to really understand how to create compelling content around software, I had to learn how to write. Even about a topic I was only peripherally aware of at the time.

So I did.

I wrote over 7,000 articles in less than 8 years.

I wrote on websites, syndication sites, on financial sites, press releases, landing pages, editorials and more.

I started one article at a time and did it so much that it became second nature. I was edited by tough editors at sites like Seeking Alpha and had to rewrite content often to get it published. It was tough starting out but I learned.

Eventually, my content was so compelling that my website had 50,000 daily visitors and in 2010, I received a Microsoft MVP award for the Windows Desktop.

Build Conference Anaheim

Me at the Microsoft Build Conference in Anaheim California – 2011

My ability to write got me into conferences where I met most of the popular technology writers I had always admired. I was a member of the press pool at Microsoft events – because I learned how to write.

That business made me close to a million dollars based on my digital marketing abilities BUT at the end of the day it all came down to one thing.

The ability to write and express myself.

It’s critical.

I learned this the hard way

When I would walk entrepreneurs through digital marketing basics and eventually get their sites up and running, I would find out that they either didn’t know how to write or hated writing.

That changed the way I teach.

Now I start off with a basic digital writing and copywriting class.

Once my students are able to write somewhat decently and properly, only then do we move to keyword research, idea validation etc.

My advice to entrepreneurs starting out

If you have an idea for an online business, you should take a writing class. It doesn’t matter if you’re selling a product or a service, you should learn how to write.

You should head to online resources like Udemy and search for “writing”.

Yes, you can hire a copywriter to do some things for you but the truth is, even the best copywriters can’t replace you.

Customers and clients are drawn to YOU. 

They come to your site, connect to you on social media and respond to your content because it’s YOU. This is true for every kind of business and it’s also why the most effective way to sell professional services online is with your blog.

The blog allows customers and visitors to see how you think and figure out whether your values are compatible with theirs. If they like how you think and express yourself, you’re more likely to make that sale or convert that visitor.

Also practice writing!

“I’m not a good writer!” – that’s a common refrain I hear.

No one starts out as a good writer. No one.

Some people do have natural talent but even that takes honing and practice until it’s perfected. Write one hundred articles in a month and I GUARANTEE you that the first and last article will be dramatically different.

The bottom line

The ability to express yourself is one of the most critical skills you can develop as an adult. It’s what gets you the VC money, what gets you the raise at work, the first date with a significant other and what gets your content to convert.

Learning how to write can change your life. I know this because it changed mine.

If you don’t know how to write, learn and if you’re a good writer, practice. This skill is often the difference between success and failure online.

Continue Reading

Categories

Archives

Digital Marketing Job Board

Trending