monetizing idea - is it possible?

hemi427

Regular Member
Joined
Oct 22, 2012
Messages
241
Reaction score
69
Hi guys, I ranked up my TV show sites and Im managing about 2 000 UV/day but so far no luck with sales. Im with HULU+ and AFFBUZZ. Thinking about monetizing it I figured out some idea but no sure how to do it. Im using WP and so far just linking videos to program LP. Im thinking to switch into PPL instead of PPS (1 200 click-6 leads - 0 conversions). Now the idea:

0. Find place to watch tv shows, not like legal one (hulu etc) but some other (there is many tv shows sites), buy some subscription so I will get nice, ads-free streaming
1. List of all episodes at one page - small pics (shots from episode), brief description, all nicely designed
2. every episode gets individual page, here I embed streaming I bought in some place from point 0 (not sure how to embeded it yet)
4. after 30-120 seconds some sort of content lock will pop up asking to fill out the form to continue watching. Here the problem is that I would like to somehow embed vendors LP into my "pop up" (<iframe> ?? ) and anfter is all done this window will close itself and visitor is able to continue watching.

Im not really good with programing but I guess some part of it might be done by WP plugin or sth. Im not really sure where to start with it but I feel like it just might work, at least I will get some conversions.

what you guys think? any help/advise will be much appreciated.
this is what one of my sites looks like now: http://watchbreakingbadonlinefree.net - any review will be appreciated also

hemi427
 
The method you're describing is what everyone else is using, so yes.
 
I havent checked the BHW for some time, any guidance how to start with it or where to look for more info?
 
1. Sign up with Adwork Media
2. Download the Adwork Media content locker plugin (if you're using WP)
3. Configure which offers you want to show on the content locker
4. Enable the content locker for the specified pages

I wouldn't know how to go about the content locker to show up after 30 seconds of playing the video. Especially if you're using third-party embedded videos (I hope you do, for legal reasons :) ).
 
Follow the above steps e.g Adwork Media then use JavaScript to only make it show after x milliseconds for example:

Code:
window.onload = function() {
    setTimeout(function() {
        document.getElementById('lockcontent').style.display = 'block';
    }, 60000);
}

You would need to have the content locker set to display:none; then the javascript will show it after 60 seconds going by the above.
 
I just checked it for you, Adwork media allows you to set the time until the gateway (content locker) will pop up you can find it in the content locking section of their dashboard. Or you can just do what This Web Guy said ^^
 
Back
Top