Does the javascript code pass referrer? I am worried that ebay might ban the account if referrer data is not passed.
I get that too. Looks like after automation, wordpress is stripping out the script tags. When manually adding an auctionpost though, the template works fine.
To fix it:
1. install the inline-javascript wordpress plugin.
2. use this in your a2p template:
please note the single quotes in the document.write. The double quotes didn't work for me using the inline plugin.Code:[inline] <script type="text/javascript"> var item = "[itemID]"; var first = "http://rover.ebay.com/rover/1/711-xxxxx-xxxxx-0/1?icep_ff3=2&pub=xxxxxxxxxx&toolid=10001&campid=xxxxxxxxxxx&customid=&icep_item="; var last = "&ipn=psmain&icep_vectorid=xxxxxxxx&kwid=xxxxxxx&mtid=824&kw=lg"; var url = first+item+last; document.write('<a href="',decodeURI(url),'">Click HERE TO BUY</a>'); </script> [/inline]