educational

A Console Comeback

Recently, I wrote an editorial about Webmaster's changing attitudes towards consoles, those ubiquitous new Windows that pop-up (and under) the browser Window you are currently using. This inspired some thoughtful responses from XBiz readers that I would like to share, along with some copy-n-paste code:

I finished off the previous article stating that while I believe surfers hate an excessive amount of consoles, one targeted console per site should never be a problem, and the fact that they do increase revenues when properly and moderately used should be an online marketer's first concern. The bottom line should always be 'the bottom line' — and when properly implemented, consoles can increase your revenues.

In response, TheMarketingGuy had this to say: "While it's possible that a percentage of the users who responded "[because] Surfers Hate Them" actually tested the technique on their own surfers visiting their site and came to the above conclusion based on the results of that test, I think it's more likely that a far greater percentage based that conclusion on "common knowledge" on the Internet, which is a shame.

Those who responded "[because] I Hate Them" are an entirely different story... If they're using that as a way to position themselves as "different" from their competitor, then I suppose that's fine... But I doubt it. If I could ask them a question it would simply be "who are you making your site for?" Again, I think everything you said is true. Properly used, they can be extremely effective, but the only way anyone will know for sure if they'll be effective for them is to toss the assumptions to the side and do a little testing."

jah had this to add: "I definitely agree that used in moderation, the console would be a great marketing tool. However, the problem lies with knowing what the site you have taken your visitor to is doing. Some are popping up another 3 Consoles, others are trying to download some software onto your computer, or both. Before you know it, a never ending pop up hell is often started. RESEARCHING your partners and finding out how far the "chain" will go is vital, to prevent an almost never ending nightmare."

I believe that the lesson to be learned here (whether you personally use consoles or not) is to test not only your own site, but what happens to surfers who leave your site to visit a sponsor or other linked site. If you launch an exit console or two, and the destination site launches an enter console or two, the surfer will most likely become overwhelmed, and if your business model relies on repeat visitors, this will work against you.

Rickyracer added "I voted in the poll and do not use consoles because surfers hate them. What began as a great idea as a tool to welcome or pass along legit info to surfers was soon abused and manipulated for self serving interests and eventually for the adult biz, became CJ's for too many sites, thus giving a bad rap to responsible users of Pop-Ups. I'd rather have the surfer join one of our sites or buy some our merchandise rather than make a few bucks off a sponsor anyway. If we want to promote a sponsor, we'll give him a link on our site."

To which burek replied "there is nothing wrong with bit of pop-up or pop-under. As long as you have full control of it, i.e.: loading stuff that you control, off your server. For example, special promotions, news, deals, etc. You name it. For your own site(s), if you don't like sending traffic to sponsors or such. Having smart, useful pop-ups will just as well build credibility with customers:"

A Better Idea
Given this thoughtful input, I have reconsidered the use of consoles, and while I still believe that they are an effective method of increasing revenues, I have a few suggestions on some 'more productive' uses for them. As always, your mileage may vary, and these ideas may not fit in with your operation, they will allow you to gain the benefits of using pop-ups, without incurring some of their drawbacks.

For instance, if you have a pay site, targeted pop-ups are a great way to cycle traffic through your offerings, assuming that you run more than one site. There is nothing new in this, and the common practice of using the last console to send traffic to outside sites (the pay site's own sponsors) will not likely end soon, but perhaps a better use of pay site pop-ups might be to fire an email collection box console for traffic exiting the 'Join' page, and why not a console with a 'special' discounted renewal offer for ex-members leaving your 'Cancel' page? Both of these 'in-house' solutions allow you to profit from existing traffic without losing the surfer to another site.

I still believe that all sites can increase revenues while 'helping' visitors by popping one small text only exit console that offers surfers an alternative content source. This will guide much of your 'mistaken' traffic (those surfers who click the wrong link, and mistakenly enter your site. Try half a dozen or so big, bold text links that say simply: TEENS, ASIANS, AMATEURS, etc. Quick loading and inoffensive, these consoles can be quite productive.

Another of my favorite uses for consoles involve the so-called 'stealth' or pop-under, which pops a new window that is only visible after the surfer closes his current browser window. While I used to do quite well with these when promoting a sponsor site, I now think that other types of programs would benefit from this approach, and the reason for this is simple: if the main browser window is closed, it's likely that the prospect has already blown his or her load, and might be interested in something more than more porn — like one of the popular 'cleaner' programs, which may have great appeal to someone who was just scouring the Web's nether regions for illicit material.

On a similar subject, a discussion on the 'Traffic Signals' board centered around the 'best type of pop-under' consoles, and provided us with two different approaches to solving the same problem. Our own junkiefred (https://www.hotthumblinks.com/) provided this simple pop-under script that is placed between your HEAD /HEAD> tags:

SCRIPT language="Javascript">
myWindow=window.open('https://www.twistedchicks.com/', 'winin','toolbar=0,menubar=0,scrollbars=0,status=0,resizable=0,width=540,height=580');

myWindow.blur

self.focus();

/SCRIPT>

danndeb (Danny https://hits2you.hypermart.net) then provided us with this easy copy-and-paste pop-under script. Simply insert the following code into your HEAD /HEAD tags. Change var popunder to the URL you want to pop, and set at 0 to pop the console every time the page loads, or 1 to pop it only once per session. This is a great feature that uses cookies to help prevent multiple copies of your console from 'stacking up' behind the main browser window. The second example inherits the launching window's properties, but will only fire once per visit, if you so desire.

SCRIPT>

var popunder="https://hits2you.hypermart.net"

//Pop-under only once per browser session? (0=no, 1=yes) //Specifying 0 will cause popunder to load every time page is loaded var once_per_session=1

///No editing beyond here required/////

function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { // if cookie exists
offset += search.length
// set index of beginning of value
end = document.cookie.indexOf(";", offset);
// set index of end of cookie value
if (end == -1)
end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function loadornot(){
if (get_cookie('popunder')==''){
loadpopunder()
document.cookie="popunder=yes"
}
}

function loadpopunder(){
win2=window.open(popunder)
win2.blur()
window.focus()
}

if (once_per_session==0)
loadpopunder()
else
loadornot()

/SCRIPT>

The first example allows you to specify the new window's properties, including size and features, and it will pop every time the 'launching' page loads. The second example inherits the launching window's properties, but will only fire once per visit, if you so desire. In either case, don't forget to replace the example URL with one of your own.

If you're one of those Webmasters who overuse consoles, perhaps you should consider scaling back to one. If you're one of those who doesn't use consoles, then perhaps you might want to try a pop-under or small exit console, after all, you have nothing to lose, and everything to gain, and with the above code snippets, it's as easy as copy-n-paste! ~ Stephen

Copyright © 2024 Adnet Media. All Rights Reserved. XBIZ is a trademark of Adnet Media.
Reproduction in whole or in part in any form or medium without express written permission is prohibited.

More Articles

profile

VerifyMy Seeks to Provide Frictionless Online Safety, Compliance Solutions

Before founding VerifyMy, Ryan Shaw was simply looking for an age verification solution for his previous business. The ones he found, however, were too expensive, too difficult to integrate with, or failed to take into account the needs of either the businesses implementing them or the end users who would be required to interact with them.

Alejandro Freixes ·
opinion

How Adult Website Operators Can Cash in on the 'Interchange' Class Action

The Payment Card Interchange Fee Settlement resulted from a landmark antitrust lawsuit involving Visa, Mastercard and several major banks. The case centered around the interchange fees charged to merchants for processing credit and debit card transactions. These fees are set by card networks and are paid by merchants to the banks that issue the cards.

Jonathan Corona ·
opinion

It's Time to Rock the Vote and Make Your Voice Heard

When I worked to defeat California’s Proposition 60 in 2016, our opposition campaign was outspent nearly 10 to 1. Nevertheless, our community came together and garnered enough support and awareness to defeat that harmful, misguided piece of proposed legislation — by more than a million votes.

Siouxsie Q ·
opinion

Staying Compliant to Avoid the Takedown Shakedown

Dealing with complaints is an everyday part of doing business — and a crucial one, since not dealing with them properly can haunt your business in multiple ways. Card brand regulations require every merchant doing business online to have in place a complaint process for reporting content that may be illegal or that violates the card brand rules.

Cathy Beardsley ·
profile

WIA Profile: Patricia Ucros

Born in Bogota, Colombia, Ucros graduated from college with a degree in education. She spent three years teaching third grade, which she enjoyed a lot, before heeding her father’s advice and moving to South Florida.

Women In Adult ·
opinion

Creating Payment Redundancies to Maximize Payout Uptime

During the global CrowdStrike outage that took place toward the end of July, a flawed software update brought air travel and electronic commerce to a grinding halt worldwide. This dramatically underscores the importance of having a backup plan in place for critical infrastructure.

Jonathan Corona ·
opinion

The Need for Minimal Friction in Age Verification Technology

In the adult sector, robust age assurance, comprised of age verification and age estimation methods, is critical to ensuring legal compliance with ever-evolving regulations, safeguarding minors from inappropriate content and protecting the privacy of adults wishing to view adult content.

Gavin Worrall ·
opinion

Account-to-Account Payments: The New Banking Disruptor?

So much of our industry relies upon Visa and Mastercard to support consumer payments — and with that reliance comes increased scrutiny by both brands. From a compliance perspective, the bar keeps getting raised until it feels like we end up spending half our time making sure we are compliant rather than growing our business.

Cathy Beardsley ·
profile

WIA Profile: Samantha Beatrice

Beatrice credits the sex positivity of Montreal for ultimately inspiring her to pursue work in adult entertainment. She had many friends working in the industry, from sex workers to production teams, so it felt like a natural fit and offered an opportunity to apply her marketing and social media savvy to support people she truly believes in and wants to see succeed.

Women In Adult ·
opinion

Understanding the Latest Server Processors

Over the last decade, we mostly stopped talking about CPU performance. Recently, however, there has been a seismic and exciting change in the CPU landscape, due to innovation by a chip company called Advanced Micro Devices (AMD).

Brad Mitchell ·
Show More