If anyone could help me how do I replace the Ads on my forum: http://www.randomchatter.org/. It is vbulletin software yet can't figure out where the html codes are located as someone else did it.
i didn't understand what do u mean by replace? its should be under Admin >Styles & Templates >style manager > header template
get some GREAT help here: http://www.vbulletin-faq.com/forum/showthread.php?t=4697 This will place an AD under the first post for guests only for the first 17 pages of a thread... assuming the default is 10 posts per page. in Admin CP -> Styles & Templates -> Style Manager -> Postbit Templates -> postbit or postbit_legacy find <!-- / post $post[postid] popup menu --> and put this under it... <if condition="in_array($post['postcount'], array(1, 11, 21, 31, 41, 51, 61, 71, 81, 91, 101, 111, 121, 131, 141, 151)) AND !$bbuserinfo[userid]"> <div style="padding: $stylevar[cellpadding]px 0px 0px 0px"> <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center"> <tr> <td class="thead" align="left">Sponsored Links</td> </tr> <tr> <td class="alt1" align="center"> GOOGLE CODE HERE </td> </tr> </table> </div> </if></if> PHP: If I recall correctly I could not find what I was supposed to find so I put it someplace near the bottom... but I have since undone that, so I don't really remember it clearly.
Use the "search templates" feature. Suppose you are using Google Adsense. To find all templates that have the Adsense code, search for something like "google_ad_client" which is found in all Adsense codes. Open the template and replace the code with any other code or delete it if you want no ads.