here is the script to exclude certain groups such as members who have donated or premium members you dont want to hassel with adfly
Change the x, y, z to the usergroup id you want to exclude and replace the red with you forum address
<vb:if condition="is_member_of($bbuserinfo, x, y, z )">
// <script type="text/javascript">
onmousemove = function adfly() {
adfly_id = '1860328'; //replace with your ID
for (var i = 0; i < document.links.length; i++) {
var hrefer = document.links[i].href;
if(hrefer.match("adf.ly") || hrefer.match("http://www.YourAddressHere/forum")|| hrefer.match("http://www.YourAddressHere/")) {
document.links[i].href = document.links[i].href;
}else{document.links[i].href = 'http://adf.ly/' + adfly_id + '/' + document.links[i].href;}
}
}
</script>
|