Style Demo Forum for phpBB3

Strawbee

Familiar Face
Joined
Jul 28, 2008
Messages
92
Reaction score
0
FP$
6
My site offers phpBB3 skins but I want visitors to be able to view a demo of it. However, it seems that guests can't change styles on my forums - how do I make it so that I can have a demo of theme or so that guests can view different themes?

Thanks. :3
 
Open: ../includes/session.php

Find:
Code:
if (!empty($_GET['style']) && $auth->acl_get('a_styles'))

Replace with:
Code:
if (!empty($_GET['style']))

Then you can add links on your forum to styles using the following format:
Code:
http://mysite.com/phpBB3/index.php?style=1

The number on the end corresponds to the style ID. In phpBB3, 1 is prosilver, 2 is subsilver2, then 3 is the third style you installed on your forum etc etc...

~razz~
 
A lot of phpbb3 forums I've seen have a little drop-down box on the bottom where a user can quickly change their theme.
 
Back
Top Bottom