A couple PhpBB Questions

Jay

Seasoned Veteran
Joined
Aug 28, 2009
Messages
4,483
Reaction score
14
FP$
2,177
1. How can I add a Banner Rotator to my site?
2. How can I add a Jumbling Link (Bubble Ads) to the end of my forum.
3. How can I remove the Joined date from the members posts. (everytime a user posts is shows when they joined under their DP)
 
Have you tried google? Search word jumbler in phpBB or something like that. i guess try the same thing for the banner rotator.


Quick question: How did you get the Link Cloud? I assume it is similar to that.
 
I have done multiple seaches for a link cloud for the index page but all i find is an animated one which only pulls forum titles, search wordlist or usernames.

I know there must be one available somewhere but I can't seem to find it on google.

for a banner rotator script try this one;

you put it in your index_body.html or overall_header.html file, which ever one you decide to choose.
Code:
<script type="text/javascript" language="javascript">function swg_fa_randomads() {var ads = new Array();

// List of banners, first item = banner url, second item = link url
ads[0] = new Array('http://google.co.uk/images/google-logo.gif', 'http://google.co.uk');
ads[1] = new Array('http://pixelraider.com/images/default-logo.gif', 'http://pixelraider.com');
ads[2] = new Array('Image URL', 'Link URL');

// do not edit
i=Math.floor(Math.random()*ads.length);document.write('<a href="'+ads[i][1]+'" target="_blank"><img src="'+ads[i][0]+'" border="0" width="468" height="60"></a>');} swg_fa_randomads();</script>

with the join date if you look in viewtpic_body.html and seach for 'join date' you just need to remove the part and that should remove it from viewtopic
 
Back
Top Bottom