HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

link for unregistered users

kopnakopna Coimbra Portugal ☯

Hi @vrijvlinder

Is it possible to turn the show link for unregistered users?
thank you =)

Comments

  • vrijvlindervrijvlinder Papillon-Sauvage MVP
    edited May 2017

    Find this bloc in the plugin's default.php

    public function Base_Render_Before($Sender) {
                $Session = Gdn::Session();
                if ($Sender->Menu){
                    $Sender->Menu->AddLink('Gallery',T('Gallery'), 'gallery', array('Plugins.Attachments.Upload.Allow'));
    

    Replace with this

        public function Base_Render_Before($Sender) {
                        if ($Sender->Menu){
                        $Sender->Menu->AddLink('Gallery',T('Gallery'), 'gallery');
    
  • kopnakopna Coimbra Portugal ☯

    @vrijvlinder написал:
    Find this bloc in the plugin's default.php

    public function Base_Render_Before($Sender) {
              $Session = Gdn::Session();
              if ($Sender->Menu){
                  $Sender->Menu->AddLink('Gallery',T('Gallery'), 'gallery', array('Plugins.Attachments.Upload.Allow'));
    

    Replace with this

        public function Base_Render_Before($Sender) {
                      if ($Sender->Menu){
                      $Sender->Menu->AddLink('Gallery',T('Gallery'), 'gallery');
    

    I admit my mistake in my question :) only viewing gallery. I know I'm boring - excuse me please =)

Sign In or Register to comment.