
Dynamic Date & Geo-Location

I mean showing the current date on your sales letter has been proven effective and a lot of top guys do that; also geo-location can help you get higher CTR because people feel that the offer is directly related to them.
Since I am not a coder I cannot code this but I got my friend to make these for me; thought I would share

Dynamic Date Script :
<SCRIPT language="JavaScript" type="text/javascript"> <!-- var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thu rsday","Friday","Saturday"); var monthNames = new Array("January","February","March","April","May"," June","July", "August","September","October","November","Decembe r"); var dt = new Date(); var y = dt.getYear(); // Y2K compliant if (y < 1000) y +=1900; document.write(dayNames[dt.getDay()] + ", " + monthNames[dt.getMonth()] + " " + dt.getDate() + ", " + y); // --> </SCRIPT> |
I'm sure there is a WP Plugin out there for this but if I do even that, next time you'll ask me to do your dishes too......lol

Dynamic GEO Location Script
<script src="http://www.google.com/jsapi" type="text/javascript"></script><script type="text/javascript"><!-- if (typeof(google.loader.ClientLocation.address.city) != null) { document.write(google.loader.ClientLocation.addres s.city +", " +google.loader.ClientLocation.address.region); } else { document.write("San Diego, CA") } // --></script> |