I have created a plugin that adds bands to the site, and created a bands index page (I won't post the controller details here but it works fine for registered users. here's the route:
OW::getRouter()->addRoute(new OW_Route('wtdbands-index', 'bands', 'WTDBANDS_CTRL_Bands', 'index'));
I have added /bands into the main menu and the menu item visible to Guests and registered users. When logged in I can click through to the bands index page fine. When not logged in, I get a login screen.
There are certain pages that seems to be public by default - privacy policy for example. My question is how can I make this page public?
Thanks for any help with this