Search found 1 match

by jemozkelon
August 8th, 2012, 8:11 am
Forum: GuMax 'How Do I' Questions
Topic: remove all content_actions for people not loged in?
Replies: 8
Views: 36492

Re: remove all content_actions for people not loged in?

Here is the change for GuMax 3.4.5 Find this in GuMax.php: <!-- gumax-content-actions --> <?php //if($this->data['loggedin']==1) { ?> ... <?php //} ?> You will see the code is there, just remove the "//" and it will look like this: <?php if($this->data['loggedin']==1) { ?> ... <?php } ?> ...