Advertise Here Free

CBProAds
Make Money Displaying Ads on Your Website or Blog!!
  Unravel Facebook Marketng
Catch The Biggest Wave In Online Marketing With Full FB Training Now
 

How To Create Randomized SlideSense On Every Page Load

I hope you have had a chance to try out our latest advertising tool - SlideSense. If not, check out this free tool here and then come back here to learn how to add more stunts to it.

So far, you can only use SlideSense to promote 1 offer at a time. If you want to promote another offer, you’ll have to create another SlideSense and replace it with the first one.

What if you have a few promotions to make? Or you want to create different version of SlideSense to see which one is more effective?

This is possible IF there is a way to create different SlideSense animations and randomly show them to your visitors, meaning to say, your regular visitors will see a different promotion whenever they visit your website.

(Special thanks to our member, Miriam, for suggesting this idea.)

I thought this is a great idea. After doing some research, I found a way to do it.

You’ll need to manually do some changes to the SlideSense code generated, but as I always say, it’s not rocket science.

Ok, here’s how to do it:

1) Generate your SlideSense code

First, you have to generate different versions of SlideSense for testing or different offers, using the standard SlideSense generator. It can be a mixture of text-ad and opt-in SlideSense.

Save the codes in a text file for later reference. Each code should look similar to this one:

<!– Start of LeadsLeap SlideSense Code –>
<div style=”position:absolute;top:-2000px”><img src=”http://www.leadsleap.com/slidesense/01left.png” /><img src=”http://www.leadsleap.com/slidesense/01filler.png” /></div>
<script language=”javascript”>
ss_options=
{

ss_speed: 1000,
ss_remove_click: true,
ss_direction: “bottom”,
ss_url: “http://www.leadsleap.com”,
ss_target: “_blank”,
ss_delay_start: 0,
ss_display: “every_visit”,
ss_color: “#EBEBEB”,
ss_html: “<span style=\”font-family:Arial;font-size:17px;color:#FFFFFF\”><b>Sample 1</b></span><br /><span style=\”font-family:Arial;font-size:14px;color:#FFFF00\”><b>This is another demo.</b></span>”,
ss_left_pic: “http://www.leadsleap.com/slidesense/01left.png”,
ss_background_url: “http://www.leadsleap.com/slidesense/01filler.png”,
username: “”
};
<script src=”http://www.leadsleap.com/slidesense/js/slidesense.js” type=”text/javascript”></script>
<!– End of LeadsLeap SlideSense Code –>

2) Combine the codes into one code

Next, you have to combine all the codes into one code using the template below:

<!– Start of LeadsLeap SlideSense Code –>
<div ….. >…..</div> // Refer to Step 2
<script language=”javascript”>
var howMany = 3;
var ss_rotate=new Array();
ss_rotate[0]=
{

  ss_….. // Refer to Step 3
};
ss_rotate[1]=
{

  ss_….. // Refer to Step 3
};
ss_rotate[2]=
{

  ss_….. // Refer to Step 3
};
var ss_options = ss_rotate[Math.round(Math.random()*howMany)];
</script>
<script src=”http://www.leadsleap.com/slidesense/js/slidesense.js” type=”text/javascript”></script>
<!– End of LeadsLeap SlideSense Code –>

Follow the following steps to combine the codes into one……

Step 1 - Customize the template

The template above is for rotating 3 SlideSense animations.

If you have 4 SlideSense animations, you’ll define howMany as 4 and you’ll have ss_rotate[0], ss_rotate[1], ss_rotate[2] and ss_rotate[3].

The rest of the code are unchanged. You can rotate any number of SlideSense animations.

Step 2 - Combine the <div ……> …. </div> line from all the codes, omitting repeated images.

The line <div ……> …. </div> is used to preload the images required to ensure smooth animation. If all your SlideSense animations use the same set of images, you’ll only have one line of <div ……> …. </div>. If all the animations use different set of images, you’ll need to include all the <div ……> …. </div>.

(Don’t understand? Don’t worry. When you see the example below, you should know what I mean.)

Step 3 - Copy and paste the parameters in the ss_options in EACH of the SlideSense code into ss_rotate[ ]

ss_rotate[ ] can be ss_rotate[0], ss_rotate[1] etc, depending on how many SlideSense animations you’re going to rotate. Take note that you always start with [0]. So if you have 3 animations, the first ss_options from the first animation will go into ss_rotate[0].

(Don’t understand again? Don’t worry. See the example of the final combined code below.)

After combining all the codes, the final code will look like this:

<!– Start of LeadsLeap SlideSense Code –>
<div style=”position:absolute;top:-2000px”><img src=”http://www.leadsleap.com/slidesense/01left.png” /><img src=”http://www.leadsleap.com/slidesense/01filler.png” /></div>
<div style=”position:absolute;top:-2000px”><img src=”http://www.leadsleap.com/slidesense/03left.png” /><img src=”http://www.leadsleap.com/slidesense/03filler.png” /></div>
<script language=”javascript”>
var howMany = 3;
var ss_rotate=new Array();
ss_rotate[0]=
{

ss_speed: 1000,
ss_remove_click: true,
ss_direction: “bottom”,
ss_url: “http://www.leadsleap.com”,
ss_target: “_blank”,
ss_delay_start: 0,
ss_display: “every_visit”,
ss_color: “#EBEBEB”,
ss_html: “<span style=\”font-family:Arial;font-size:17px;color:#FFFFFF\”><b>Sample 1</b></span><br /><span style=\”font-family:Arial;font-size:14px;color:#FFFF00\”><b>This is another demo.</b></span>”,
ss_left_pic: “http://www.leadsleap.com/slidesense/01left.png”,
ss_background_url: “http://www.leadsleap.com/slidesense/01filler.png”,
username: “”

};
ss_rotate[1]=
{

ss_speed: 1000,
ss_remove_click: true,
ss_direction: “bottom”,
ss_url: “http://www.leadsleap.com”,
ss_target: “_blank”,
ss_delay_start: 0,
ss_display: “every_visit”,
ss_color: “#EBEBEB”,
ss_html: “<span style=\”font-family:Arial;font-size:17px;color:#FFFFFF\”><b>Sample 2</b></span><br /><span style=\”font-family:Arial;font-size:14px;color:#FFFF00\”><b>This is another demo.</b></span>”,
ss_left_pic: “http://www.leadsleap.com/slidesense/03left.png”,
ss_background_url: “http://www.leadsleap.com/slidesense/03filler.png”,
username: “”

};
ss_rotate[2]=
{

ss_speed: 1000,
ss_remove_click: true,
ss_direction: “bottom”,
ss_url: “http://www.leadsleap.com”,
ss_target: “_blank”,
ss_delay_start: 0,
ss_display: “every_visit”,
ss_color: “#EBEBEB”,
ss_html: “<span style=\”font-family:Arial;font-size:17px;color:#FFFFFF\”><b>Sample 3</b></span><br /><span style=\”font-family:Arial;font-size:14px;color:#FFFF00\”><b>This is another demo.</b></span>”,
ss_left_pic: “http://www.leadsleap.com/slidesense/01left.png”,
ss_background_url: “http://www.leadsleap.com/slidesense/01filler.png”,
username: “”

};
var ss_options = ss_rotate[Math.round(Math.random()*howMany)];
</script>
<script src=”http://www.leadsleap.com/slidesense/js/slidesense.js” type=”text/javascript”></script>
<!– End of LeadsLeap SlideSense Code –>

That’s all. Just copy and paste the combined code to your webpage as usual and you will see different version of SlideSense being randomly loaded whenever you load that webpage.

Special note: If this is your first time using SlideSense, you should start with single SlideSense. You can try creating randomize SlideSense only when you are sure that single SlideSense works on your site.

Free Advertising Tool - LeadsLeap SlideSense

As you probably know, LeadsLeap has just moved to a more powerful server.

And the reason to move the server now is because of the tool we’re launching today - LeadsLeap SlideSense

It’s a powerful advertising tool. You should have seen it in action by now.

Yes, it’s the little animation that bounce up from the bottom of this page.

What Can SlideSense Do?

If you run a blog or website, and you want to get people to opt-in to your list or simply look at your new offer, what do you do?

A typical trick is to setup a popup window. But as you know, popup is losing its effectiveness. More and more people are closing popups the moment they see it.

The solution? SlideSense.

You can use SlideSense for opt-in purpose or simply as a text ad. Here’s the demo:

Text-ad SlideSense | Opt-in SlideSense

Honestly, I didn’t come out with this idea. I first saw this animation on other people’s blog and I thought it was a great idea. So I got my programmer to design a similar one, adding some improvements here and there, and make it available to you.

(I later realized that similar tool is available for sale at USD67. Anyway, you don’t have to spend a dime. It’s free for LeadsLeap members! In fact, our version is much better in terms of browser compatibility, especially for internet explorer.)

Developing this tool was not easy. It took us 4 months to perfect every little detail. In fact, I threw away the first prototype because it was built on a specific js framework (for the non-techie, it means certain websites may have problem using this animation).

What you are seeing and using now is the second build. It was a complete rewrite of the first version.

I’m telling you all these because I hope that you can appreciate this tool.

Something To Brag About SlideSense

1) It’s easy to set up

Absolutely no script to install. If you can set up Google Adsense, you can set up SlideSense.

2) It’s highly customizable

Almost every component of SlideSense can be customized, from the image, text link , font, opt-in settings and even the animation speed.

You can use it on as many websites as you like, including your own Blogger blog!

How To Add SlideSense To Your Website?

To setup your own SlideSense is very easy.

1) Fill in the setup form here and generate the code.

2) Copy and paste the generated code into any page on your site or blog. For blog, you should put it in the template so that it appears on every page.

That’s all!

Remember to send us a feedback after you’ve played with it!

What’s The Best Way To Use LeadsLeap To Generate Leads?

This is part of our Tuesday With Kenneth series, where I reply our members challenges in internet marketing.

Today’s question is from David Nuzzi. Here’s his question:

“LeadsLeap is the only program that seems to be working for me. What is the best way to utilize your program to it’s fullest?” - David Nuzzi

To answer David’s question, let’s first look at how LeadsLeap helps our members to generate leads.

How LeadsLeap Helps You To Generate Leads?

LeadsLeap helps you to generate leads through a 3-pronged approach.

#1 - Leads Building Network

The first approach is our leads building network, where you refer people to join and build your network at LeadsLeap.

You may ask “Kenneth, isn’t LeadsLeap supposed to send me leads? Why am I sending leads to LeadsLeap?”

Fair question. Let me explain.

The people you refer to LeadsLeap are your ’seed’ leads. Remember that your ad will be shown to 10 levels of your network, for life. (Read our homepage again if you don’t know about it.) As your referred leads bring in more leads, you’ll see your network grow. Over time, more and more people will see your ad.

To illustrate, say if you refer 20 people to LeadsLeap, you may end up being able to advertise to 100s or even 1000s of people, for life.

That’s the leads building element of the system. (Note: In addition to building leads, you can also earn recurring commissions on sales made from product order and/or membership upgrade.)

#2 - Text Advertising On Our Website

Some new members ask “Is it possible to generate leads without referring people to LeadsLeap?” The answer is yes. This is done through the 2nd element of our system.

Besides being able to advertise to your LeadsLeap downlines, your ad will be posted in our members area and LeadsLeap blog. Our blog receives tens of thousands of traffic every month from external sources such as the search engines. This means you ad will be exposed to fresh leads months after months.

Sounds good? Yes. But there is a catch……

To have your ad shown in our network, you need to have excess credits in your account. I’m not going into the details of how to earn credits. You can read about it in your account. But I have one advice for you - try to focus on methods that can earn you credits on autopilot in the long run. You may need to work harder in the short run, but in the long run, you’ll not have to worry about credits.

Alternatively, you can become a PRO member of LeadsLeap, where your PRO ad will be rotated in the system indefinitely.

#3 - Leads Generation Tools

The last element of the system is more for advanced internet marketers, where we develop top-notch tools that you can use to generate more leads on your own, outside of the LeadsLeap system.

Two examples are the Affiliate ID Manager and M.Y.O.B List Builder Script. Even our Advanced Link Cloaker can be used as an advertising tool that you can use to get traffic from forums etc. Again, I’m not going into the details. You can learn about these tools in your members area.

More tools are in the pipeline. The next one will be released real soon!

So, what is the best way to utilize LeadsLeap to it’s fullest?

The answer is to make full use of all three elements of the system. Build your team at LeadsLeap, earn advertising credits on autopilot and check out the free tools that we offer and see how you can make use of them.

Last but not least, if you are new to LeadsLeap, check out some of our older posts in LeadsLeap blog. If you experience any internet marketing challenge, it is very likely that I’ve covered that topic in my previous blog posts. If not, you can always send your question to me (details in our email to you on every Tuesday).

How To Add Widget To Wordpress Blog

Since we launched LeadsLeap widget, I’ve received several questions asking how to add widget to wordpress blog.

Instead of answering these questions in private, I think it’s easier for me to post the answer in our blog, so that I can use screenshots to explain.

First, if you are using a hosted blog on Wordpress.com, you can’t add a javascript Widget like LeadsLeap Widget.

In this article, we are talking about self-hosted Wordpress blog, one that you install on your own server.

Clear on that? Ok, let’s start.

There are two ways to add a widget.

1) By editing the Theme’s html code
2) By using a plugin

1) By editing the Theme’s html code

If you understand some basic html, you can go to your Wordpress Theme or template and add the widget code manually.

Here’s how to do it:

- Login to your server via your preferred FTP client, select the directory where you install your wordpress files and go to wp-content > themes > (your current theme).

- Look for a file named sidebar.php and open it. (Some themes may call it another name. Go through all the files in the folder. You should be able to figure out which is the correct one.)

- Study the html code and see where you want the widget to appear. Then, simply copy and paste the widget into the code.

Another way is to edit the html code directly from your Wordpress admin. Just go to Presentation > Theme Editor and choose sidebar.php to edit.

The problem with this alternative method is that you have to set the permission of sidebar.php to 766 before you can save the changes. But by default, the permission is set to 644.

If the above method sounds ‘rocket science’ to you, your last chance is to use a plugin.

2) By using a plugin

Using a plugin is an easier way to manage not one but all your widgets. It’s excellent for those who knows nothing about html.

The plugin I’m talking about is Fuzzy Widget Plugin. You can download it here.

Installing the plugin is pretty straight forward. Just follow the given instruction. If you’ve installed a plugin before, the method is about the same.

Once the plugin is installed and activated, login to you Wordpress admin, go to Presentation > Widgets.

The screenshot below is for your reference. (Note: Your admin area may look slightly different because my Wordpress version is not the most update one.)

From the screenshot above, you can see a “Sidebar 1″ and “Available Widgets”. You can drag widgets from Available Widgets to Sidebar 1 and arrange the position of the widgets in Sidebar 1 in any way you like.

Just play with it. You’ll understand what I mean. It’s very easy.

Now, LeadsLeap Widget is not one of the standard widgets available. So you have to manually add it in.

Here’s how to do it:

Step 1: Drag an empty widget (both Text 1 and Text 2 are empty widgets) from Available Widget to Sidebar 1

Step 2: Click on the configure button. You will see a popup form as shown below.

- Leave the first field empty. Copy and paste your LeadsLeap widget code into the second field as shown and then close it by clicking the ‘x’ sign.

Step 3: Save the changes.

Done.

Go to your blog and you should see LeadsLeap widget in the sidebar of your blog.

There are other standard widgets such as Recent Posts, Calendar and Recent Comments that you can play around with in Fuzzy Widget Plugin. Also, you can easily adjust the position of different widgets by simply “drag n drop”.

Note: For maximum clickthrough, try to position LeadsLeap widget at the top.

Have fun playing with this plugin.

Latest announcement: As requested by some members, LeadsLeap widget now comes in 3 widths: 160 pixels, 173 pixels and 250 pixels. There should be one size that can fit your sidebar. Check out the new setup page now!

A Discussion On LeadsLeap Widget

One of the most common suggestions we’ve received from our members is to create a widget that members can put on their websites and earn credits from.

The most typical suggestion was to display PRO members’ ads in the widget and when visitors on your blog/website click on the ads, you earn credits.

The idea is similar to the “once-popular” BlogRush widget shown on the right.

PRO members get more traffic. You earn more credits to show your ad.

Sounds good?

I don’t think so.

My main concern is, who is going to click those ads?

My Experience From Adsense Marketing

In Adsense, any experienced marketer will advice you to remove the frame from your Adsense ad and make your ad blend-in with the rest of the contents. That’s the least you need to do to improve the click-through.

If you want a sample of what I mean, take a look at all the LeadsLeap contextual ads in this blog, yes, the blog you’re reading now. You don’t see me putting a frame around the ads, do you?

If we were to create an ad widget similar to BlogRush widget, I can imagine the click-through will be low!

If the click-through is low, you don’t earn much credit. It defeats the purpose of putting a widget on your website.

A Good Suggestion From A Member

While I was still cracking my mind for a solution, I received another suggestion from our member, Marty L. (Marty, a big thank you to you!)

Here’s what he wrote to me:

“Perhaps a widget linking to the viral blog. The member who posts the widget on their site connects to their LeadsLeap blog.”

That is a great idea.

As you know, LeadsLeap blog is a viral blog. You can earn credits, build leads and make money simply by sending people to the blog. It makes sense to have a widget that enhances this feature.

Can’t wait to see how your LeadsLeap widget will look like? Here’s a working sample:

When your visitors see your LeadsLeap widget, they know that you are recommending them to a blog post. They will be more willing to click through your widget and read the post.

As they click, you earn credits.

As they click and join LeadsLeap, you build your network.

As they click and buy any of our product, you make money.

As they click and subsequently click on other members’ ads, you earn more credits.

Last but not least, as they click and read our blog post, they will benefit from the contents and thank you for recommending the post to them.

With LeadsLeap widget, you can now earn credits without having to click on ads.

LeadsLeap widget is now ready. It comes in 9 different colors. Click here to get your customized widget now (login needed).

Free Affiliate Link Cloaker - How To Maximize Its Potential

Today I’m going to illustrate to you how you can use LeadsLeap’s free affiliate link cloaker to do some amazing stunt! If you have not been using it, it’s time to start thinking about it.

1) Be a more professional Clickbank affiliate

A Clickbank affiliate link looks something like this:

http://yourid.productid.hop.clickbank.net

When people click on the link, they will go to the product website that looks like this:

http://ProductSite.com/?hop=yourid

The “hop=yourid” is an eyesore, isn’t it?

With our free affiliate link cloaker, you can send traffic to http://ProductSite.com and still get your commission.

Technically, here’s how to do it:

1) For “Original URL”, you insert http://yourid.productid.hop.clickbank.net.
2) For “Destination URL”, you insert http://ProductSite.com.
3) For “Show Destination URL In Browser”, you choose Yes.

What will happen is the link cloaking system will direct traffic to the Destination URL (http://ProductSite.com) directly while loading the Original URL (http://yourid.productid.hop.clickbank.net) in the background and get your affiliate ID cookied.

Your visitor will see http://ProductSite.com in their browser. But when they make a purchase, you’ll get the commission. How is that stunt?

2) Earn affiliate commission without people clicking your affiliate link!

You may have written a review about a product but when the reader is ready to purchase the product, he may Google for the product and go direct to the salespage without clicking on your link.

Using the same feature above, you can send traffic to your review page and earn commission even if the visitors don’t click on your affiliate link!

Here’s how to do it:

1) For “Original URL”, you insert http://yourid.productid.hop.clickbank.net.
2) For “Destination URL”, you insert http://YourReviewPage.com.
3) For “Show Destination URL In Browser”, you choose Yes.

Similar to the first case, the link cloaker will direct traffic to your review page while loading your affiliate link in the background and get your affiliate ID cookied.

So even if a visitor skip your affiliate link and go directly to the product page, you will still earn the commission!

3) Use other people’s website as your marketing tool

Often when you are blogging, social networking or posting in a forum, you may share a web resource with other people.

How about turning any web resource into your marketing tool?

For example, you may be replying to a forum thread about how to promote ebook and in your reply, you can write something like:

“I found a good blog on how to promote ebook. You can read it here.”

When people click on the link, they will come to a blog that talk about ebook promotion. You are providing a true value to the forum readers. At the same time, you have included an ad bar to the page and can direct the traffic to your product or affiliated product.

Click on the “read it here” link above to see what I mean.

In this example, I’ve used a post from LeadsLeap blog . But you can use any website as the ’seed’ and put your ad to the page. For example, you can share a Youtube video and then put an ad bar to the page.

This is done through the AdFrame Settings in our free link cloaker (see the screenshot below). There are a couple of options in the settings. You can explore and play with the parameters on your own.

I hope that these 3 illustrations can inspire you to think of other ways to use the free affiliate link cloaker. If you’ve other ways to use this tool, feel free to share with us using the comment form below.

LeadsLeap Progress Report For 2008

To all LeadsLeap members, I wish you and your family a happy and prosperous new year!!

On behalf of LeadsLeap team, I sincerely thank you for supporting LeadsLeap.

LeadsLeap was started in January 2008 and it’s turning to one year old.

Here’s what we’ve achieved over the past one year:

1) We’ve grown from zero member to 27000 members and we are now growing at a rate of about 100 members a day.

2) We’ve delivered more than 2,500,000 leads to our members.

3) We launched LeadsLeap blog, a viral blog that our members can advertise in. This blog is now well established in the search engines, getting more than 1000 visitors everyday, sending traffic to our members websites.

4) We also launched 3 powerful tools that our members can use for free.

The first tool is our Advanced Link Cloaker.

It’s probably the most powerful link cloaker available in the market. Besides helping you to cloak and track links, you can also use it as an advertising tool to promote your businesses.

The second tool is our rebrandable viral software - Affiliate ID Manager

Besides having a useful software to manage all your IDs and passwords, you can rebrand the software with your ads, distribute it for free and promote up to 6 programs of your choice.

The third tool is of course our latest M.Y.O.B. List Builder Script

This PHP script is my answer to the most common newbies’ question - “How do I start making money online?” M.Y.O.B. stands for Mind Your Own Business. That’s the message I want to give to all our members. Start your own business, build your own list, run your own affiliate program and sell your own products. With your own business, you can promote any affiliate program you like.

What’s next in 2009?

We’ve a list of new developments laid out for 2009. We simply need time and effort to turn ideas into realities.

Our developments basically focus on two areas.

1) To attract more traffic so as to deliver more traffic to our members.

2) To provide more values to existing members by creating more useful tools.

3) To continue educating our members by sharing my marketing experience in our blog.

My vision is to turn LeadsLeap into a community where members can advertise and build leads, and have access to useful tools that can give them a competitive advantage in winning the internet marketing game.

So in 2009, look forward to more traffic, more free tools and of course, more practical tips from LeadsLeap.

Once again, Happy New Year!!

10,000 Free MLM Leads Or Business Opportunity Leads Everyday. Sounds Like A Scam? Read On……

Finding free MLM leads or business opportunity leads remains one of the challenges among internet marketers. And LeadsLeap is set out to help you on that.

For those who don’t know, LeadsLeap is a free leads generation system that allows you to build leads and advertise for free in our network.

If you are a LeadsLeap member, have you ever wondered, who is clicking your ad?

In our blog discussion today, I’m going to bring you to our back-office and show you some statistic of the leads that we send to you.

We did a similar study back in July but over the past 5 months, we’ve grown and it’s time to revisit the stats again.

What you are seeing above is a screenshot of one of the tables in our database. This table records the number of clicks received from a particular userid and IP address.

Of course, this screenshot doesn’t show all the records. I just want to give you an idea of how I gather my stats.

For rows with a userid, it means the click is either by a LeadsLeap member or someone referred by the member. For rows without a userid, it means the click is from a non-member.

When I sum up the results over 24 hours, this is what I get:

Members Referred Clicks = 3074
Non-members Clicks = 7368

Total number of clicks received = 10442

From this study, we can make the following conclusion:

1) LeadsLeap generates about 10,000 leads for our members everyday.
2) 70% of the leads are non-members from different IP addresses.

Compared to our statistic in July, the number of non-member clicks have jumped by 300%!!

If you are a LeadsLeap member, this is a good news to you because you get to share the leads that we bring to you.

If you are not a LeadsLeap member yet, and are looking for free MLM leads or business opportunity leads, join us now and start posting your ad in our network today!

Get Fresh Home Business Opportunity Lead - The LeadsLeap Way

“Help! Where can I get fresh home business opportunity lead?”

With so many home business opportunities sprouting, it seems that the only problem is where to find fresh leads for YOUR opportunity.

In today’s blog, I’m going to show you how you can use LeadsLeap’s FREE system to solve your “lead” problem.

I don’t dare to say LeadsLeap is the ONLY solution, but after reading the methodology, you decide if it’s a sound solution for you……

LeadsLeap is designed to help you get fresh home business opportunity lead through its two-prong approach.

Approach #1 - Proprietary Lead Generation System

LeadsLeap is essentially a lead generation system where you can build a network of leads that you can advertise to.

If you are a LeadsLeap member, you know that I’m not referring to the traditional safelist advertising where you email your ‘n’ levels of downlines and flood each other’s inbox.

I’m not going into the details. You can read more about the lead generation system here.

What I do want to show you is an interesting example of a member’s referral statistic.

Below is a recent enquiry I received from Chris:

Why are my stats so distorted? What happened to my levels 1-3??????

Level 1: 6
Level 2: 0
Level 3: 2
Level 4: 332
Level 5: 355
Level 6: 111
Level 7: 15
Level 8: 0
Level 9: 0
Level 10: 0

Can you see what is happening?

Chris has personally introduced 6 people to join LeadsLeap. Out of the 6 people, probably 1 of them introduced another person to join, but that person quitted for some reasons. That’s why Level 2 has 0 member. But before the person quitted, he introduced 2 people to join LeadsLeap (as shown in Level 3). This is where the magic happens. These 2 members bring in 332 people to LeadsLeap (as shown in Level 4), who in turn bring in 355 people and then 111 people and finally 15 people at the 7th level.

I have no doubt that this is not the end of the story. The network will continue to grow.

So to Chris, his initial effort of bringing in 6 people to LeadsLeap has brought him 821 prospects whom he can advertise to.

In the months to come, even if Chris doesn’t do anything, he will continue to receive hundreds if not thousands of fresh home business opportunity leads.

That’s LeadsLeap system in action!

Approach #2 - Content Network Advertising System

At LeadsLeap, we also allow our members to post their ads in our blog (yes, the blog you are reading now).

How does it help?

Simple. LeadsLeap blog receives more than a thousand visitors a day, majority of the traffic are fresh leads from the search engines.

After more than 5 months of hard work, LeadsLeap blog is now well positioned in the search engine, appearing in the top 10 results for many highly searched home business related keywords.

We planned to make it happen several months ago, and it’s happening now!

For example, the keywords “types of advertising techniques” is searched 169 times a day!

Check out our ranking in Google.

LeadsLeap ranks #2, just below Wikipedia, which is seriously a tough guy to compete!

As a member, since your ad appears in our network, you will get to share the pie.

This is another secret weapon that we use to help members to generate endless fresh home business opportunity lead.

That’s the two-prong approach that LeadsLeap uses to generate fresh home business opportunity lead for its members. If you are an existing member, I hope that after reading this post, you can better appreciate the system. If you are not a member yet, well, join us. It’s free anyway.

Who Is Clicking Your LeadsLeap Ad?

Today’s blog post is for LeadsLeap members. If you are not a member, you can sign up here.

In this post, I’m going to bring you to our back-office and show you some stats about the traffic that we send to you.

Some background

Early this week, we added an extra fraud prevention system that tracks the userid, IP address and number of clicks. This system will tell us which IP address is viewing our members’ ads and whether the visitor is a member or non-member.

When we launched the system, I was excited to see what it will return.

I was surprised!

Take a look at the screenshot of the database that recorded the click-through in the first 10 minutes after we launch.

traffic generation system

The userid column is blank, meaning none of the clicks is from our own members!

This means our members are getting traffic from non-members, people who happen to come to our website via non-referred links such as the search engine. Frankly, I was pretty excited when I saw this.

This is just the first 10 minutes. After 24 hours, I exported the 24-hour record and separate them into member and non-member clicks.

The result is 64% are member clicks and 36% are non-member clicks. In total, we recorded 4763 clicks on that day.

Why am I showing you all these?

First reason, I’m excited. I can’t wait to share this info with you.

Another reason is I want to show you that LeadsLeap is more than just a traffic exchange system. Our members are getting traffic from non-members. 36% is not a small percentage.

How can you channel our traffic to your website?

One way is to become our PRO member. Your PRO ad will be shown in our network all the time 24/7.

Another way is to make sure that you have enough credits in your account so that you FREE ad can be shown in our network. If you are a member, you should have learnt the different ways to earn credits. One smart way is to refer 20 people to join you in LeadsLeap. This will earn you 500 credits every month.

20 people one time = 500 credits every month = endless traffic months after months.

Do the math. It’s a good deal.

Monthly bonus credits will be added on the 1st of each month. If you want to quality for the bonus on the 1st of August, you still have about 5 days to reach your 20 referrals. Go for it!

Next Page »