Restricting site access

Hi Everyone,

I'm building a completely closed community, and have most pages redirecting to the Splash page if someone tries to access them when they are not authenticated.

I have this set in Settings.

image_transcoder.php?o=sys_images_editor&h=587&dpx=1&t=1659521731

Some pages still show the nav and some page elements.

Eg: This page redirects to the splash page: https://mydomain.example/page/view-persons-profile?id=32

This page loads the page elements, revealing the profile users name https://mydomain.example/page/persons-profile-info?id=32

image_transcoder.php?o=sys_images_editor&h=588&dpx=1&t=1659522870

Any tips for solving this, or is it a bug?

Thanks

  • 128
  • More
Replies (2)
    • Hello @Brett Von Holdt !

      By default, you may hide every site's menu item for the guests via the Studio->Naviagation->System->Site menu area. Or add the RAW block for each of those pages with the code like:

      <script>

      $("#bx-menu-toolbar-1-container).remove();

      </script>

      It will clean the top site menu in the Artificer template.

      • Mine is also completely closed. I just went to Navigation and changed visibility for menu items- removing unauthenticated users. Also in pages you have the option of choosing visibility- I removed unauthenticated there too for each page. My way is tedious process but it worked well

        Login or Join to comment.