Sell Like a Guru with E-Junkie

The big marketing gurus don’t sell their products directly through a sales letter. They use a variety of ‘soft-sell’ content pieces to build a relationship with a prospective customer before giving them the big sales pitch.

This approach is great for the guru’s affiliates because they don’t have to spend a lot of time ‘warming-up’ their audiences before sending them to the guru’s website. They just have to point to the awesome new freebie that the guru has released and let the guru do the selling.

Big Problem for E-Junkie Users

It would be great to let your affiliates refer their audience to free videos, special reports, webinars, etc.when they promote your product rather than sending them straight to a sales pitch. But, there is a big problem for E-Junkie users…

…E-Junkie only allows you to designate 1 landing page per product in their affiliate tools.

You either send your hoplink to your product sales page or some other page – but that is it. No chance to let your affiliates choose the best way to promote to their audience. No way to create customized landing pages for special JV promotions or let affiliates promote a post on your blog and still set their affiliate cookie.

Fortunately, there is a workaround that is easy to setup.

Adding Alternate Landing Pages for E-Junkie Affiliates

E-Junkie is a very flexible shopping cart solution, but they don’t make it easy for the average person to customize their account. If you aren’t comfortable tweaking website code, it can be tough to take advantage of this flexibility…

…but I’m about to show you everything you need to know!

The workaround is this: add a unique identifier to the end of your promotional URL’s for each freebie your affiliates can promote. Whenever E-Junkie comes across an extra code in an affiliate link that it does not recognize, it just passes it along by adding it to the end of your landing page URL.

To take advantage of this and create alternate landing pages, we will setup a simple php script as the default landing page which will re-direct traffic based on custom landing page identification code that we will create.

When an affiliate link comes into e-Junkie, they pass along any code that isn’t e-Junkie specific by appending it to the end of the landing page URL you set for the product.

The Step-By-Step Breakdown

To show you how this all works, I will demonstrate how to create an alternate landing page for my copywriting course that leads to a free report.

It all works like this:

This is the standard code provided through the e-Junkie affiliate tools for an affiliate link to the Meatball Copywriting course…

Code:
https://www.e-junkie.com/ecom/gb.php?ii=283940&c=ib&aff=7144

To use this technique, I would first create a short PHP script that will look for a unique code added to the URL for the landing page. Then, when it finds the code, it will forward the visitor to an alternate landing page. If the code isn’t found, it sends the visitor to the default landing page for the product. This is the basic code for this script…

Code:
<?php
if ($alp=="uniquepagecode")
$redirect="http://www.urlforalternatepage.com";
/*
To add additional alternate landing pages to the script, copy the code
below, update the Unique Page Code and the URL for the Alternate
Landing Page, and then paste it just before the final 'else' code.

elseif ($alp=="uniquepagecode")
$redirect="http://www.urlforalternatepage.com";
*/
else
$redirect="http://www.defaultlandingpage.com";
header( 'Location: '.$redirect ) ;
?>

The portions of the text in red need to be modified to include your unique page codes and the specific URLs to your alternate landing pages.

At the bottom of this article is a link to a script generator program I created to simplify the process of creating this script (and helping avoid problems due to typing errors.)

Just follow the prompts in the software, copy the results to a text document, and save the file with a ‘.php’ file extension.

For this example, I’ve named my file ‘redirectscript.php’ and uploaded it to the main directory for the Meatball Copywriting website. This is the direct link to the script…

Code:
http://www.MeatballCopywriting.com/redirectscript.php

Inside the e-Junkie Shopping cart, I will set this page to be the affiliate hoplink landing page for the product.

Next, I made a special free copywriting report for my affiliates to promote to their lists. To give them the ability to direct their visitors to the report opt-in page, I setup a unique code for them to add to the hoplink that will tell the redirect script where to send the visitors.

The code is ‘report01’ and the variable name I use is ‘alp’ (for Alternate Landing Page – clever, hey?) The resulting bit of code that my affiliates will add to the hoplink is this…

Code:
&alp=report01

When that code is added to the original affiliate hoplink, you get this…

Code:
https://www.e-junkie.com/ecom/gb.php?ii=283940&c=ib&aff=7144&alp=report01

When an affiliate uses that hoplink to direct people to my product, e-Junkie sets the tracking cookie, identifies the non e-Junkie code (‘&alp=report01’), and appends it to the product’s designated landing page URL.

In the case of this example, the visitor would be sent to this URL by e-Junkie…

Code:
http://www.MeatballCopywriting.com/redirectscript.php?alp=report01

From there, the PHP script checks for the alternate page code and forward the visitor to the appropriate page on the Meatball Copywriting site.

The whole thing is active on my server, so you can copy and past the page links and see the process in action. (If you want to actually promote Meatball Copywriting – a guy can dream, can’t he – just replace the affiliate id with your own e-Junkie affiliate id where the link says ‘&aff=7144’. Click here join Go-To Guy! Enterprises’s affiliate program).

An Imperfect Solution That Works

This is not the most user friendly way too manage multiple landing pages for a product, but it’s not horribly complicated to implement and gives you a lot of flexibility when giving tools to your affiliates to promote your products.

You can add as many alternate pages as you want by just copying the ‘elseif’ line of code and adding a new code and landing page URL.

Click here to join Go-To Guy! Enterprises’s affiliate program
Click to download the E-Junkie Alternate Landing Page Script Generator.
Click to Download PDF version of Sell Like a Guru with E-Junkie

2 thoughts on “Sell Like a Guru with E-Junkie”

  1. Deb,

    Glad to help when I can.

    E-Junkie now lets an affiliate see their affiliate ID number on their main account page. I recommend that you create a page for affiliates on your site and post a hoplink there showing them where to paste in their affiliate ID.

    Better yet, if you have any programming skills, you can create a page where affiliates enter their ID number and then the page automatically generates affiliate links for them.

    Good luck,

    Andrew

  2. Thank you for figuring this out! It is a bit over my head but I hope I can do this for a new product rather than to send them to my default e-junkie sales page. I’d love to know how you explain to affiliate ways to get their affil link. I have had people ask me to switch to cb as it’s easier for them. I wish there was an easy interface for that.

Leave a Reply

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.