
04-14-2012, 03:19 PM
|
 |
Paid Member
|
|
Join Date: Sep 2010
Location: Thailand
Posts: 311
|
|
Thanks for clearing this up.. i found that out today actually.
May i add some info for wordpress users..
dont place the tracking code right before </body>, as wordpress have a php code line that is called wpfooter just before thie </body> tag, and if you insert the aff tracking code below it, it breaks plugiins. So the aff code must come above this piece if using wordpress;
INSERT YOUR POSTAFFILIATE CODE HERE!
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
DON'T INSERT IT HERE!
</body>
|