-
Building A Surfer Trap – Stage 6
Stage 6 already!
Only 2 more stages to go after this tutorial until you have a fully functional surfer trap!
Ok as promised in the last tutorial, we are going to implement the table pages you hopefully made in our last tutorial.
You now need to signup for ANOTHER counter code. Use the same counter as you did last time and, again, make sure the URL you send the traffic from the counter to is your main Multi-Site FPA surfer trap page.
Ok, you have the new counter code, what you should do with this is place it on every one of the niche table pages we made yesterday. Nowhere else except on these pages.
Once you have the counter code placed you now need to go back to our consoles, what we are going to do is make these HTML table pages into a secondary console from off the first pop up that we get when a surfer visits any of our FPA’s.
What you should do is enter the following coding in between the <head> and </head> tags of the niche pop-ups ensuring that you choose a DIFFERENT niche to the one of your original consoles:
<!—— BEGIN CONSOLE CODE ——->
<SCRIPT language=Javascript>
<!–
var exit=true;
function exitcnsl()
{
if (exit)
open(“http://www.yourdomain.com/tableconsolepage.html”, “tables”,”toolbar=0,location=0,status=0,menubar=0, scrollbars=0,resizable=0, width=800,height=600,top=0,left=0″);
}
//–>
</SCRIPT>
<!—— END CONSOLE CODE ——->You need to edit the figures for width= and height= to reflect the size of your table, ideally the frame of the console should be around 3 or 4 pixels either side of your tables.
Ok now once you have added the above to your existing pop-ups you now need to add the following to the newly created table consoles between the <head> and the </head> tags:
<SCRIPT language=javascript>
self.blur();
</script>What this will do is once the first console loads, it will immediately load a second console but, this second console should be ‘hidden’ behind the main window that is displayed. We have created a blur console.
We now have one last thing to do with this ‘blur console’ that we have just created.
Go to the HTML coding for the table ad console and add the same JavaScript to that page however, this time you DO NOT need to use the self.blur section of the instructions or, change the sizes of the console that pops.
Instead you need to add the following to the <body> tag:
onUnload=”exitcnsl()” so as an example your body tag may look like this:
<BODY BGCOLOR=#000000 onUnload=”exitcnsl()”>
Now you also need to alter the location for the console that will pop this time, you have a choice, you can send the console directly to the ARS POTD program or, you can send it BACK to your Multi-Site FPA page, at which point the surfer will be able to select another niche or leave your site.
Now remember, this surfer trap IS aggressive however, every time one of your counter codes load both from the FPA’s where we implemented them AND on the newly created table consoles we are gaining extra traffic.
If you have ANY questions at all please do not hesitate to post on the forums and myself or one of our administrators will assist you.
Article written by Lee
-
Cascading Style Sheet Basics
CSS (Cascading Style Sheets) have been around for a while now, and act as a complement to plain old HTML files.
Style sheets allow a developer to separate HTML code from formatting rules and styles. It seems like many HTML beginners’ under-estimate the power and flexibility of the style sheet. In this article, I’m going to describe what cascading style sheets are, their benefits, and two ways to implement them.
Cascading What’s?
They’re what chalk is to cheese, what ice-cream is to Jell-O they complement HTML and allow us to define the style (look and feel) for our entire site in just one file!They get their name from the fact that each different style declaration can be “cascaded” under the one above it, forming a parent-child relationship between the styles.
They were quickly standardized, and both Internet Explorer and Netscape built their latest browser releases to match the CSS standard (or, to match it as closely as they could).
So, you’re still wondering what a style sheet is? A style sheet is a free-flowing document that can either be referenced by, or included into a HTML document (Kind of like using SSI to call a file but not, if that makes sense). Style sheets use blocks of formatted code to define styles for existing HTML elements, or new styles, called ‘classes’.
Style sheets can be used to change the height of some text, to change the background color of a page, to set the default border color of a table the list goes on and on. Put simply though, style sheets are used to set the formatting, color scheme and style of an HTML page.
Style sheets should really be used instead of the standard , < b >, < i > and < u > tags because:
One style sheet can be referenced from many pages, meaning that each file is kept to a minimum size and only requires only extra line to load the external style sheet file
If you ever need to change any part of your sites look/feel, it can be done quickly and only needs to be done in one place: the style sheet and furthermore, it is done globally.
With cascading style sheets, there are many page attributes that simply cannot be set without them: individual tags can have different background colors, borders, indents, shadows, etc.
Style sheets can either be inline (included as part of a HTML document), or, referenced externally (Contained in a separate file and referenced from the HTML document). Inline style sheets are contained wholly within a HTML document and will only change the look and layout of that HTML file.
Open your favorite text editor and enter the following code. Save the file as styles.html and open it in your browser:
Cascading Style Sheet Example.
h1
{
color: #636594;
font-family: Verdana;
size: 18pt;
}This is one big H1 tag!
When you fire up your browser, you should see the text “This is one big H1 tag!” in a large, blue Verdana font face.
Let’s step through the style code step by step. Firstly, we have a pretty standard HTML header. The page starts with the tag followed by the tag. Next, we use a standard tag to set the title of the page we are working with.
Notice, though, that before the tag is closed, we have our tag, its contents, and then the closing tag.
h1
{
color: #636594;
font-family: Verdana;
size: 18pt;
}When you add the style sheet code inline (as part of the HTML document), it must be bound by and tags respectively. Our example is working with the tag. We are changing three attributes of the ’s style: the text color (color), the font that any tags on the page will be displayed in (font-family), and lastly, the size of the font (size).
The code between the { and } are known as the attributes. Our sample code has three. Try changing the hexadecimal value of the color attribute to #A00808 and then save and refresh the page. You should see the same text, just colored red instead of blue.
An Example Of An External Style Sheet.
External style sheets are similar to internal style sheets, however, they are stripped of the and tags, and need to be referenced from another HTML file to be used.Create a new file called “whatever.css” and enter the following code into it:
h1
{
color: #a00808;
font-family: Verdana;
size: 18pt
}Next, create a HTML file and name it test.html. Enter the following code into test.html:
External Style Sheet Reference Example.
This is one big H1 tag!As mentioned above, you can see that the actual code in whatever.css is exactly the same as it was in the inline example. In our HTML file, we simply place a tag in the section of our page. The rel=”stylesheet” attribute tells the browser that the link to the external file is a style sheet. The type=”text/css” attribute tells the browser that whatever.css is a text file containing CSS (cascading style sheet) declarations. Lastly, the href=”whatever.css” attribute tells the browser that the actual file we want to load is whatever.css.
Conclusion.
Well, there you have it, a quick look at style sheets and how to implement both an inline and external version. Checkout the links below if you’ve never worked with cascading style sheets before. You will be surprised at some of the things you can do with them!Article written by Lee.
-
The Gay Opinion – Obscenity Laws and the Gay Market
Let me begin by saying this is not a legal dissertation, but a collection of opinions on the recent comments and events inside the industry.
Obscenity Laws have always been the “fly in the ointment” for adult. Not knowing when, if or how the government will act toward webmasters or companies.
So what do I think? Every indicator out there says something or someone is coming. Big Brother is on the prowl. But, how will webmasters in the gay market act to ward off the evil?
While discussing this with a number of webmasters, I found that the gay opinion is spread as wide as a gigolo’s legs on payday. The thoughts that have been shared vary from ultra conservative to down right militant. And once again, I find myself stuck dead in the middle.
Here is a sampling of the opinions at large:
I’ve heard from some webmasters who have a “come and get me attitude”. Their approach is the government has done enough damage to the gay community over time.
Their attempts to sanction the gay adult industry will be simply another shot at taking us down – and that attempt will garner a public/media fight of the government acting as a bully. Now does this have anything to do with adult? No matter how I look at it, the one subject isn’t related to the other. Personally, the government’s reaction/treatment to the gay community has little to do with the government’s action towards adult. Yes, I can totally see how they got there, but it’s not enough for me.
There is the “what else is new” set. This is a group of webmasters who own pay and/or free sites, have been doing this for a long time and they have adapted their companies and their marketing to sell memberships to the surfers. They use softcore and stories already on their feeder sites, have webmaster programs and they are happy with the results and will not change a thing. Their methods work – methods are not blatantly sexual but more sensual and the conversions are a testament to that. By the way, this is where I stand (right in the middle). The general thought is nothing has happened yet. Work smart and don’t panic.
The other side of this is the “oh shit’ers”. These webmasters are re working their entire networks of gay porn to follow a well-established method of softcore only. Make them Pay for the Meat! They are reacting by taking down all hardcore images from their sites in order NOT to stir up any government dirt. Well as far as I’m concerned, they should have been doing this to begin with… sell the hardcore to members don’t give it away on a free site. For this, group the panic is on.
Finally I spoke with the “fuck ’ems”. Now their idea isn’t that the government is suppressing the gay community. They look at this totally as a first amendment issue of freedom speech and expression. They use both hardcore and softcore to resell for webmaster programs and frankly, they feel that they will prevail over any government attack simply by way of Bill of Rights. They’re making money and they don’t care who knows about it.
What does this all mean? Well here’s my take…
First, it’s apparent that the opinions are just as varied as webmasters working the straight market.
There is a general feel of, don’t panic – more than I have seen with straight market webmasters. I honestly, think this comes from our years of battle against the government on many other issues. Until the rumors become fact we will move as we always have – then deal with what is concrete rather than the abstract.
Overall, the most resolute business people I have heard from, all said the same thing. If you use common sense, use methods that work and that do not go overboard there will be no need to panic. The hobbyist who is trying to make a million will leave out of fear, the “over the top” websites will be the target and those businesses run with common sense will continue with no major issues. I think my favorite statement to come out of these conversations is, “The government will bite, if you give them the bone. Don’t feed them and they go hungry.”
I see the same “proceed as usual” attitude out there, as I have always seen in the gay community. Deal with the facts and only and not rumors.
Once again, this is totally based on opinion and by no means a legal stance. If you have any doubts, concerns or questions about obscenity laws in your area or in general, please consult your attorney.
Article written by Gary-Alan
-
Seasons Greetings For The Adult Surfer
How do the national and, international holidays affect our sponsors sales? More than you would think especially if you can offer your surfers something ‘seasonal’ when they hit your site. However, that said, when should you start planning for these holidays and, more importantly, how can you ensure that once you have implemented your seasonal marketing campaigns that they actually work?
Seasonal Marketing – The Basics.
Seasonal marketing is, in effect a method of changing your marketing approach around different times of the year to affect both the volume of sales you make and, more importantly, the uniqueness of the product you are offering your surfers. A good example of this is at Christmas time, many of the sponsors will provide their webmasters with banner with a holiday feel to them, perhaps using scantily clad men in Santa outfits or half naked women in elves costumes. By offering a seasonal marketing approach to your site surfers you actually increase the chances of making a sale.Holiday Porn.
One of the best ways to offer your surfers a fresh marketing angle is to ensure that you plan for all of the major holidays throughout the year in advance so for example, as mentioned above, Christmas is a big holiday as are, New Years, Easter, Thanksgiving (US), Independence Day (US) and, Halloween. By building sites specifically for these holidays you are increasing the chances not only of building your sales but, of gaining additional traffic that you might otherwise lose out on. It has been said certainly over the last four years i have worked in the adult industry that many webmasters experience an increase in search engine traffic searching on keywords such as ‘Christmas Porn’ and, ‘Ghost Porn’ around the various holidays, build now for next year and, when the holiday season arrives, you will be one step ahead of your competition.Seasonal Marketing Overview.
As already mentioned the holiday season especially Christmas time, can be a great way to gain additional traffic, not only from those surfers specifically looking for Christmas Porn but, also the newbie adult surfers who have perhaps only just got their first computer on Christmas day, by adding to your collection of seasonal porn sites year after year you will not only learn a lot about the way the various holidays and seasons affect your sales but, you will also be able to profit from your surfers in a way that not many other webmasters do.Article written by Lee
-
10 Ways To Promote Your Site
As we all know, getting productive traffic to your site can be a long and tedious task of course, there are ways to generate ‘optimized’ traffic at very little cost and time involvement. Below are just a few suggestions about how you can increase traffic to your
site and, inevitably, there are hundreds of different variations of these that will work for your site, I think the key to getting a successful traffic source is dependant on how much effort you put into it and, if you work hard and play little, you will reap the benefits tenfold.1. Create an email discussion list. The list should be related to your web site’s subject. Place your ad on all posts and it will remind people to visit your site.
2. Prove your site is a bargain. Add a lot of free stuff to your offer or, if you’ve sold the product for a higher price before, show them the difference or, show them how much your competitors charge.
3. Make your web site more useful. Sell ad space, generate hot leads, answer visitor questions, offer free content, be news friendly, etc.
4. Make the most of each visitor. Sometimes your price is to high. You should provide a variety of similar products at different price ranges.
5. Test and redesign your banner ads till you get your desired click through rate. Once you do, join many banner exchanges and buy ad space.
6. Use holidays as a reason to get free publicity. Write a press release or article about the current holiday. It’ll have a high chance of being published.
7. Utilize the free content on the internet. Publish one article on a single web page and your main web site link then upload it as a doorway page.
8. Test your new products on the bottom of your home page. You don’t want to take away hits from your best selling products until others are proven.
9. Make commissions without joining an affiliate program. Just propose a joint venture offer to web sites that don’t have affiliate programs.
10. Persuade other web sites to link to yours. It can improve your search engine ranking. Just offer them something of value in return.
Article written by Lee.
-
Content – Keeping your members coming back for more
We know that the first battle for pay site owners is getting the traffic and the signups. But, sometimes this becomes such a focus that we forget the other battle: keeping members interested once you have them. When people pay for a membership to a site they are expecting to get their money’s worth. In return for their monthly fee they are looking for a site that encompasses quality, variety and originality.
As the web grows, so does the online entertainment industry. Four or five years ago there was only a handful of pay sites around compared to the thousands and thousands that are on the net today. Back then, you could literally put any kind of content on your sites and you would have membership, there just was not much choice out there for the connoisseur of porn. Now, potential members are more informed, they know what is out there, they know what they like, and they know what they want to see.
What has to be done to cater to these more discriminating porn shoppers? You have to give them what they want. Here are some useful tips for choosing a content provider and/or content for your pay sites that will keep the members coming back for more:
Go for the exclusive content.
You want to be able to provide your members with something that is fairly fresh and that is not pasted on every pay site on the Internet. The last thing a potential buyer wants to see is a site that is a carbon copy of half the sites out there.
Choose leased content.
Choosing leased content over buying CD’s is a good way to keep your site fresh. Most leased content providers will update their content on a bi-monthly or monthly basis. As well, with leased content, it is just a matter of adding the feed into your site. This alleviates the need for extensive extra graphic design work.
Have a wide variety of content.
Make sure that your site has a little bit of everything a potential member could want: pictures, videos, live feeds, etc. The more you have the better. Many content providers have great package deals available that will include all of these things all set up and ready to put on a site.
Choose a reputable content provider.
You want to make sure that when you choose a content provider that you do not just go for the best deal out there. You want to also look at things like: how much bandwidth they provide, what their technical support is like and last but not least, do they have good customer service.
These are just but a few helpful suggestions to follow when choosing content for your pay site. There are certainly many ways to achieve a high rate of member retention. One thing that many of our customers tell us is that they find that having a least one voyeur feed on their site great for keeping the members coming back for more. Laura’s Condo, one of our voyeur feeds, has one of the best member retention rates around. Visitors get attached to the girls, develop a rapport with them and they do not want to lose that. Hence, they will keep renewing to be able to keep their relationship going with their favorite girl.
The number one thing that pay site owners must remember is that members equal money and in order to keep the cash flow rolling in they must keep the members interested and give them what they want. By spending a little extra money to get high quality exclusive content, you will actually be putting more money in recurring memberships back in your pocket at the end of the day.
Article written by Meredith Murray
-
GEO::IP – What Is It?
As more and more webmasters investigate the international market place to expand their online businesses I thought it would be prudent to take a look at one of the more important modules of Apache and, just how this module can help webmasters to monetize their international traffic. What is this module? GEO::IP.
Geo I.p – The Basics.
GEO::IP is an Apache module which is able to recognize countries by specific I.P blocks. GEO::IP in itself is, in effect a database of the current i.p addresses in use on the internet across the globe. When used in conjunction with various scripting languages, Perl, Php, Etc the Apache GEO::IP module can assist online businesses with the following:Detecting credit card fraud.
Automatically select the geographically closest mirror.
Analyzing your web server logs to determine the countries of your visitors.What this means to the webmaster is that they can now market their sites to a specific language or, country in addition to either redirecting or, refusing other countries / languages access to their online sites.
GEO::IP Module – Where To Find It.
The GEO::IP module is available from several sources online in either paid or, free forms. The most up-to-date and professional form of the GEO::IP module can be found on the Maxmind website ( http://www.maxmind.com ).Once you have the GEO::IP module you should either ask your host to, or, install it yourself on your Apache based web server.
Geo I.p – Different Modules.
In addition to the simplistic ‘country i.p’ based detection, there is also another more complex GEO::IP module, this module is often referred to as ‘I.p to Location’ which, in simplistic terms means that you can target specific cities of the world hence, if you want to offer a service to surfers in Miami, you are able to redirect your Miami surfers to a page with content of specific interest to them.Redirecting Traffic.
Geo i.p is the basis behind most of the international traffic redirection systems available for webmasters to use in order to monetize their global traffic more efficiently, whether those systems are paid, free, subscription based or, otherwise they will ALL use the fundamental basics of the GEO::IP module.Through the use of the geoip module you will be able to maximize and filter the traffic sources you currently have and, decide on whether you send your surfers to a Pay site, a dialer or, a traffic trade.
Scripting – Putting GEO::IP To Work.
Many programming firms are now looking at the global market place in addition to webmasters as they now have the ability to offer their clients a wider product base from country specific banner displays to multi-lingual tours, programmers can develop new ways to enable webmasters to profit from their traffic unlike ever before. One such company is Geo Scripting ( http://www.geoscripting.com ).GEO::IP – Overview.
All in all the Geo i.p Apache module is going to become more and more prominent in the industry, sponsors are already starting to use country specific redirects on their affiliates traffic base and, individual webmasters are beginning to capitalize on this module through redirecting their own traffic to the sponsors that offer them multi-lingual paysites. When all is said and done, I am all for anything that can better assist webmasters in monetizing their global revenue streams especially as in the last 4 years I have been online it would only seem to be the last 2 months when this untapped source of income has come into the forefront of the adult industry.Article written by Le
-
Mirroring Adult Sites – Stage Two
Ok, in stage 1 of this tutorial we learnt the basic ‘setup’ for our multisite generation now we have to start putting the rest of our puzzle together.
At this stage in the tutorial we should now have a 50 pic free site, all of the images are in the appropriate folder on our HD along with the HTML in their own folder. If you have not already done so, you need to ensure that when you add/added the links to your individual HTML pages that you call the images like this:
/FreeSite/Images/pic1.jpg
The Thumbnails like this:
/FreeSite/Images/Thumbs/thumb1.jpg
The gallery links like this:
/FreeSite/Galleries/gallery1.html
And the FPA from the warning page like this:
/FreeSite/FPA/fpa.html
Why are we calling the links like this and not like, http://www.mydomain.com/FreeSite/Galleries/gallery1.html I hear you ask, well the answer is simple, in order to use this site TEMPLATE over and over again, we need to ensure that there is a standard way of calling the links, this way, once we decide duplicate this site on a different domain, all we do is upload the folder to our server with a different set of images and we have another set of sites built.
Ok, we now have our free site but, we have some empty folders that need filling up, here is how we are going to achieve that.
What we now have to do is re-open the Gallery Pages, DO NOT change the image calls or the thumbnail calls however, what you will need to do is select 15 TGP’s that you would like to submit to, download the recip buttons for these TGP’s and save them in the /FreeSite/Images/Recips/ folder.
Now we have the gallery pages open we need to modify them like this..
Take the top text link that you created and replace that with a 3 cell table. In this table for the first gallery, you need to call the first 3 recip links for the TGP’s you want to submit to and link them to the appropriate recip url for each of the TGP’s again, calling the recip images like this, /FreeSite/Recips/recip1.gif. Also, you will need to modify the text link at the bottom of your gallery pages, I would suggest creating an 8 cell table, containing 8 niche text links, four of which should go to your Single-Site FPA’s (as created for the surfer trap) and the remaining 4 text links should go directly to your sponsors site tour page.
Now save this newly created page as tgp1.html in the /FreeSite/TGP/ folder. Do the above again for the remaining 4 gallery pages but calling a different set of recip links each time. each time you modify a gallery page save it in the /FreeSite/TGP/ folder so gallery2.html would be renamed to tgp2.html, Gallery 3 would be called tgp3.html and so on.
What you should now have is a single 50 pic free site with 5 galleries of 10 pics, all pics going to the larger image on a HTML page and, 5 TGP galleries.
This is as far as we go with the tutorial today however, in the next stage we will continue to fill in the rest of the puzzle pieces.
Article written by Lee
-
Choosing The Right Sponsor For Your Site
Affiliate programs (also frequently called referral or associate programs) have grown today to become one of the most popular ways for you to earn an income from your web site’s traffic. Most affiliate programs are designed to allow you to simply set up and begin earning commissions on visitors and sales you refer. However, the quality of the programs, and the results you will see, very greatly from program to program, making it important to choose wisely which are best for you and your site. It is the purpose of this article to help sort through many of the programs, and offer assistance in determining what to look for.
My personal experience with affiliate programs goes back over a year and a half, pretty long in Internet terms. Over this period, I researched many of the affiliate programs available on the Internet and, tried to best determine what works best. From my experiences, here are several of the top factors you should take into consideration:
1- Stability of the company and program
What I found to be the one of highest priorities for most webmasters is the stability of the affiliate program, and the company. This should be one of your top considerations when evaluating programs. Is the company stable and financially sound? Do they offer assistance with promoting the opportunity? And, do they pay in a timely fashion? Often, webmasters have been lured in by offers of high commissions, only to find out they will never see a paycheck, despite referring hundreds, or even hundreds of thousands, of visitors.
2- Synergies with your site
I am a big proponent of this. All too often, I see sites sign up for every affiliate program they can, figuring if they make a few bucks on each, that they will be profitable. For a select few, this may very well work. However, for most sites it will not, and many cases you will turn off your audience because of the ‘over-commercialization’ of your site. As you are considering the various affiliate programs available, be sure to consider what exactly your audience, your visitors, might be interested in clicking on, and eventually buying.
For example, if your site caters to a general audience, then perhaps general affiliate programs such as Adult Revenue Service, will be effective. Or perhaps Evidence Eliminator, which allows you to sell privacy / security software. If your site only caters to a specific niche, programs such as Adult Revenue Service should be excellent money-makers as they have a wide and varied selection of adult sites which you may promote. The key is to not just think of the affiliate program as a way for you to make some easy money, but rather an extension of your web site, a service you offer your visitors to help them find the products or services they are interested in, at good prices, and with a company they can trust.
3- Commission Tracking
An important aspect to consider is whether or not the affiliate program offers some way for you to track your sales, and even the number of visitors you refer. There are several ways this can be accomplished, such as real-time, online reports showing you sales and your commissions. Or perhaps sales can be tracked through a simple email each time you receive a new customer. This can be very important for allowing you to test and evaluate the effectiveness of the program, make comparisons with other programs or advertising opportunities, and give you piece of mind that you are receiving what is fairly do.
4- Opportunity for Repeat Sales
As any business person knows, a business can not generally survive on one-time purchases. Instead you have to find ways to not only attract new customers, but also keep the ones you have. This is also very true with affiliate programs. One of the largest complaints many webmasters have had with sponsors is that they refer a customer once, see their $35 commission, but in the process the customer bookmarked the Sponsors tour page. The next time the surfer is interested in buying a membership, they return to the sponsors site through the bookmark, and the webmaster never sees another penny.
Several programs have tried to alleviate this. Programs such as Adult Revenue Service avoid this problem by offering services (Daily Updated Pictures, Email Newsletter) which customers, once signed up for, use month after month. This allows them to pay residual commissions for as long as the surfer maintains their free membership to the site or, alternately, keeps returning to the page. This helps turn average programs into exceptional opportunities, because you can earn for months, perhaps even years, on referrals you made in your first, and subsequent months.
Other Factors
In summary, it is important to look at all of these main factors and several others, including the commission rates they pay (I didn’t discuss this because they are generally easily comparable), the frequency of payment checks (they generally range from weekly to quarterly), and/or the minimum dollar value you must accumulate before receiving a check (they range from nothing to $50). A couple of other important factors: be VERY wary of any program the requires a payment or ‘membership fee’ for you to join or act as an affiliate. And, be sure to check what method they use to track sales themselves. Programs that require the visitor to remember your name, or your site’s name, and enter it in when ordering, will result in many lost commissions.
Article written by Lee.
-
Sex Toy Affiliate Programs
For the past year I’ve been playing with sex toys AND I’ve been selling them too!
Over the last couple of articles I have tried to enlighten you on secondary and third level sponsors, to supplement your site income. Another successful addition is sex toys – which are a hit in the gay market. Personally, I sell toys and videos in the secondary spots simply because the payouts are typically lower than most sponsors are – but my motto is money is money!
The basic reaction by most straight webmasters has been, I didn’t realize gay men liked sex toys, too. Well we do.
While there are a number of great toy sponsors out there, not many cater directly to gay men. That’s why I worked a deal on Gay Adult Shopping (http://store.gayadultshopping.com/partners/). I have joined others, but typically, they sell to a straight clientele. When I say market to straight, I’m referring to the packaging of their inventory. This is not a judgment call but a plain fact; I’d rather buy something that has an image of guy on it rather than a woman.
Now mind you, BOTH markets favor many of the products sold. I know if a straight female friend and I went into an adult store, we would look at the same dildo; and, perhaps even buy the same item regardless of the package. But when you’re surfing the net from home, it’s no holds barred. The surfer is no longer locked into the inventory of a shop on the street. He’s going to look for what HE wants. It is all perception. And, knowing that is half the battle.
Ok on to selling! I have taken three approaches in my experimenting – free sites, TGPs and memberships sites. Within a paysite, I typically didn’t SELL the store as much as I told the surfer it is there if he wants it. The real work in selling came with the free sites and galleries.
I’m a text man. I love writing copy and seeing how it works. However with the toys, I used a graphic and embellished it with text. For my free sites, I found direct eye contact shots (Images where the model is “looking out”, presumable at the surfer) were more effective than a pic of a guy playing with toys. Along with the pic, I used text like “My boyfriend and I can not get enough of them…” and “I get off watching him play…” or “The one with the most toys… Gets Off!” Other places on my free sites, I just dropped in the text link. Either worked well. I added both sets of ad links to my basic main pages. The results were good – even though I kept them to a minimum not to out sell my sponsor sites.
My TGP experiment was WORK! After my first try I found out that text alone doesn’t work well. This is definitely an approach that requires imagery. On my first pass, I offered pics and a paragraph that that sold all the things I could think of… dongs, dildos, videos and ejaculating butt plugs -You name I tried to sell it. Out of 2000 hits on that one page, I had 60 clicks into the toy store. Even though I had a sale, it wasn’t going to break the bank. But it SOLD, so I decided to try more. This time I hunted through my content for pics with toys in them and eye contact. I added banners and toned down the text somewhat. Instead of listing an inventory, I stayed in line with the text I mentioned above. I gave an overall feel of what the store had (toys, videos, lube, etc.) Then I ended it with a little tease of what delightful experiences were in store when their package arrived.
This time, it worked! On that first day, out of the 2000 hits it received, 500 clicks went into the store. I have never had that kind of click ratio off of a TGP. I was amazed. Most of the sales were for smaller priced items ($10-$20), but I had two orders that totaled over $200 dollars each. Was this a fluke? I wasn’t sure, so I tried it again. With the next few submissions the click rates were smaller, and I don’t know why. It could be that I used the same ads or something too similar to the first. BUT the click to sales ratio was about the same as my first attempt. Needless to say this has now become part of my weekly regiment.
So what did this prove? Sex toys DO sell well in the gay market even under the hard to convert traffic scenarios. I guess we like our toys just as much as anyone else =)
Selling adult products, whether on a free site, a TGP or a pay site, will bring in a few extra dollars that many webmasters didn’t even know was out there.
Article written by Gary-Alan
Premium Sponsors
Categories
- 2257
- Billing Solutions
- Blogging
- Branding
- Content
- Domain Names
- Employment
- Forms & Contracts
- General
- Hosting
- Link Lists
- Opt-in Mail
- Paid Traffic
- Pic Posts
- Promotion
- Scripts
- Search Engine Optimization
- Sponsors
- TGP
- Traffic
- Tutorials
- Viral Marketing
- WebDesign
- Writing