Archive for the ‘SEO’ Category

2706.11

Event tracking for web pages with no thank you page

Posted by Dan Cave in Development, Online Marketing, SEO

Google Code Event Tracking

The way goal tracking works for a lot of websites is that you set up a page which displays to the user saying “Thank you for buying widget a’”. When you see someone has visited that page you can see that a sale must have occurred.

Now that is very useful because then you can dig around in the data surrounding that visit, see where they came from and gain some useful business insights like the best converting source of traffic.

I have no thank you page, help!

Some forms of conversion don’t have a separate page to say thank you and use some clever programming to just display thank you on the same page. So how do you track the sale/conversion?

How to track goals with no thank you page

To cut a long story short; If you can’t get a thank you page made, then add analytics event tracking which looks a little something like this:

onclick javascript:_gaq.push(['_trackEvent', 'Action type', 'Label']);

What it does is track the goal interdependently of a ‘thank you page’ view via JavaScript and passes the information into your Google Analytics data.

But what about validation?

What if a user fills in the form wrong and has to hit the send button twice? Well Google has thought of that and interaction with an object (button, link etc…) is only ever counted once per visit. SO no worries there either.

Javascript Event tracking for other goals

The nicest thing about this is that you can track almost any action you like from a video play, to a PDF download to even just someone hovering over a picture with the mouse.

There are a 100 different creative and innovative ways you could use this, can you think of one? Kudos for the best Ideas shared are available.

1804.11

Are you missing out on sales for your Business

Posted by Amanda in E-Commerce, News, Online Marketing, SEO, Social Media

Optix Solutions, a Web Design and Online Marketing company based in Exeter, along with your City Centre Manager, John Harvey are putting on a FREE seminar. This is your chance to learn how you can catapult your sales online and get people into your store using social media.

This seminar, worth at least £150 pp, will cover all the essential aspects of selling online. You will leave with a fantastic understanding of how to set up an ecommerce presence and, most importantly, how to make money from it. Many ecommerce sites do not make money – make sure yours is not one of them. With over 10 years experience in running successful ecommerce stores, Optix Solutions are well placed to advise you on all the factors you need to consider from Design to Marketing – Search Engine Optimisation to Social Media strategies. Since 2000, Internet sales have risen by 3,500% to £42bn and it’s expected that by the end of 2011 this figure will climb to a staggering £72bn. Clearly the opportunity to sell online is not one to be missed.

We are passionate about this City and we don’t want retailers in Exeter to miss out on these fantastic opportunities so we hope you’ll find time to join us at the seminar.

Not only will you hear from Optix Solutions themselves, you’ll also hear from one of their clients a successful Exeter ecommerce business, www.justanotherbaby.co.uk who have agreed to share their success stories for making money online.

The seminar is being held at St Stephens House in the centre of Exeter, on Wednesday 22nd June from 9.30 – 11.30.

Book your free place now http://optixsolutionsexetershops.eventbrite.com/

1703.11

Remove Google Personalisation – Objective Results in Google

Posted by Dan Cave in Development, SEO

Google’s Search Engine is incredibly complex, exceptionally intelligent and frighteningly accurate at guessing what you want.

There are times though when, to be quite honest, I would prefer it to mind its own business and stop personalising my results, so to that end Optix Solutions have a solution should you feel the same.

Removing Google Personalisation isn’t easy; using traditional methods would result in you losing your ability to remember your login details, keep you logged into sites and all kinds of other behind the scenes things your browser can do. Google’s Personalisation is mixed in with these things and you have to be a bit savvy to work around it. One way to remove the personalisation is to turn off cookies and search history in your browser and search settings. Although this isn’t the best!

The Best Way to get Objective Google Results – In our opinion

Step 1

To view the results the rest of the world would see you need to add a little known piece of code to the end of the URL, (web address,) of your search which sets personalisation to zero. And here it is:

&pws=0

Putting that on the end of every search you do is a bit inconvenient so we also suggest step 2

Step 2

now, turn off google instant search in your Firefox Web Browser, becuase it prevents this from working.

In Firefox, install the Grease Monkey plugin and use it to automatically add the piece of code to the end of the web addresses for you.

To do that:

  1. Install Grease monkey – Get Grease Monkey
  2. Make a new script that includes:
    // @include http://www.google.co.uk/*q=*&*
  3. Put this code in the operational bit:
    if (location.href.substring(location.href.length-6,location.href.length)!='&pws=0'){location.href=location.href+'&pws=0';}
  4. Enable the script
  5. Enjoy personalisation free results

If you prefer the whole Grease Monkey script to remove Google Personalisation i’ve included it below:

// ==UserScript==
// @name personalisation remover
// @namespace pws
// @description adds &pws=0 to the end og google addresses
// @include http://www.google.co.uk/*q=*&*
// ==/UserScript==
// Author Optix solutions

if (location.href.substring(location.href.length-6,location.href.length)!=’&pws=0′)
{
location.href=location.href+’&pws=0′;
}

Credits go to our Developer Rich Moore for this one, with inspiration coming from Dan Cave and encouragement from James Dawkins and Nick. You can see them all on our team page.

Rich MooreDan Cave

Rich and Dan