10 Tips to Grow Your Business Plain & Simple
Thursday, October 16th, 2008“Try not to become a man of success but rather to become a man of value.” Albert Einstein
Marketing Daily Tips“Try not to become a man of success but rather to become a man of value.” Albert Einstein
This is a tip that can greatly increase your sales conversion ratio by getting your visitors to buy now. Simply, it adds a date to any text on your page that you can use to place a deadline for purchase. A deadline has been proven in some cases to double the response rate. Most purchases are made on impulse, this just helps things along. Here is an example.
This special offer expires:
You see? I think that is really easy method to boost sales. The date changes automatically to current date.
How to add this script?
Well… this is JavaScript and it doesn’t need any special server with php, mysql etc. Just put this code somewhere in your site (before buy in button).
<SCRIPT>
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new
Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July",
"August","September","October","November","December")
document.write(""+montharray[month]+" "+daym+"")
</SCRIPT>
Good luck with your sales! ![]()