Log in

View Full Version : Script checks for user group Adfly


shanef
05-20-2012, 09:12 PM
Hello i have been thinking about incorporating Adfly into my forum and i was wondering if there was a way for this small script (pasted below) to check and run for only certain user groups. i have some members that have donated to the forum and i would like for them not to have the hassle of dealing with it. I dont if there is some sort of code that could be added but if anyone has any ideas I would be greatfull

<script type="text/javascript">
onmousemove = function adfly() {
adfly_id = '1409766'; //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.mobilephonetalk.com")|| hrefer.match("http://www.symbiantalk.net/")) {
document.links[i].href = document.links[i].href;
}else{document.links[i].href = 'http://adf.ly/' + adfly_id + '/' + document.links[i].href;}
}
}
</script>

kh99
05-21-2012, 11:00 AM
If you added that code to a template, then you should be able to surround it with an if, like:

<vb:if condition="is_member_of($bbuserinfo, X, Y, X)">
// script code
</vb:if>

shanef
05-21-2012, 01:29 PM
Thank you works perfect

rubicon
09-17-2016, 06:34 PM
Hello

Where put this script in footer template ?

<vb:if condition="is_member_of($bbuserinfo, X, Y, X)">
// script code
</vb:if>


Thank you

MarkFL
09-17-2016, 06:41 PM
Hello

Where put this script in footer template ?


Thank you

Adding it to the bottom of the template should be fine. :)