IAmDaze
Junior Member
- Sep 2, 2017
- 162
- 163
Hey Guys! I am working on YouTube + CPA. One of my videos is doing good and I experimented a few things with it and I have something to share.
Creating a sense of scarcity have worked great for me. If you have a game hack or some type of service niche then making visitors believe that the offer will expire in a short time, will increase conversions.
Note: If you don't do it properly, it might look spammy. So do it properly.
So what I did is, I have a custom landing page and I added a little javascript somewhere near the top of the page that generates tomorrow's date and put it like this:
------------------------------------------------------------------------------------------------------
Due to high usage, we are shutting down our services on *Tomorrow's Date*
It was great helping you guys
------------------------------------------------------------------------------------------------------
JavaScript to generate tomorrow's date:
Note: You can change '1' before '*86400000' to any other number. It is the number of days in future.
Creating a sense of scarcity have worked great for me. If you have a game hack or some type of service niche then making visitors believe that the offer will expire in a short time, will increase conversions.
Note: If you don't do it properly, it might look spammy. So do it properly.
So what I did is, I have a custom landing page and I added a little javascript somewhere near the top of the page that generates tomorrow's date and put it like this:
------------------------------------------------------------------------------------------------------
Due to high usage, we are shutting down our services on *Tomorrow's Date*
It was great helping you guys
------------------------------------------------------------------------------------------------------
JavaScript to generate tomorrow's date:
HTML:
<script>
var currentDate = ((new Date(+new Date() + 1*86400000)).toString()).substring(3,10);
document.write(currentDate);
</script>
Note: You can change '1' before '*86400000' to any other number. It is the number of days in future.