Version: 1.04, by ProSkinner.com
Developer Last Online: Feb 2018
Version: 3.6.7
Rating:
Released: 04-19-2007
Last Update: 06-09-2007
Installs: 335
Template Edits
Additional Files
No support by the author.
Update: Aerohead is being supported by ForumMonkeys in this thread. Please direct all questions in that thread.
Aerohead is a trendy, modern-looking skin that gives off a great vibe, perfect for any community. The skin's neatly organized layout will simplify your forum's learning curve and make your members even happier than before. While this was designed with usability in mind, it also maintains pleasing aesthetics, giving your forum the shine needed to attain stardom!
I should also mention that Aerohead is a free skin from vBmode.com. The "Design by vBmode.com" copyright link may not be removed and this skin may not be redistributed without explicit, written permission. Please respect our copyright wishes by leaving the link intact as this allows us to continue contributing free vBulletin skins to the community.
You can remove it in the FORUMHOME template, as someone already pointed out.
Quote:
Originally Posted by M0ther
how do I enable the 'Remember me' checkbox next to the top login fields? This is present in the default style, but I don't see an option to enable or disable this, so it may be buried in the forum template.
I'm trying to edit my navbar template but I'm doing it with little success. I am adding ibArcade to it but where do I add it? Here is the code I'm trying to find:
I believe you need at least 8 threads before they show up as the script pulls the latest 8. You can always change the number by editing latestthreads.js in the /aero/misc/ directory.
Thanks for responding, the default amount was set at 10. I've changed this but it still doesn't seem to work, do you have any other ideas?
Thanks for responding, the default amount was set at 10. I've changed this but it still doesn't seem to work, do you have any other ideas?
Cheers
Well, right now your board is off... Since the latest threads script pulls the latest 10 threads using RSS, it can't do that as the RSS feed has been turned off, too. I would turn your forum back on.
This is a nice style. Very easy to change the colors of and change to suit an upcoming site. I can easily offer various color schemes with simply changing the CSS.
Here is a bug fix. Change your aero/misc/latestthreads.php to have the following contents:
Code:
ctr = 0;
for (x in threads)
{
document.writeln("<a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a><br />");
ctr++;
if (ctr == 10)
{
break;
}
}
Then people won't get Javascript errors on the forumhome page if they don't have 10 or more. It will still be limited to 10 threads, even if they want 50 in their external feed. If they have 0 threads, it just quits with no errors. They have have 500 it shows 10.