
Re: 027-0001 - Block "only For Guest" Does't Work
You can see it because you are admin...
I've done this in my development forum
http://area17.customphpbb.es/theproject
Open index.php
Find $lview = in_array($layout_row['view'], array(0,1,2,3,4));
Replace with $lview = in_array($layout_row['view'], array(0,2,3,4));
Open includes/functions_cms.php
Find $bview = '(0,1,2,3,4)';
$append = '01234';
Replace with $bview = '(0,2,3,4)';
$append = '0234';
Greetings!