I thought you were talking about hiding BBCodes like the CODE, HTML, and PHP blocks. If you could explain exactly what you have in mind, you would more likely be helped. Can you provide a screenshot of what it is you wish to hide?
Hi, thanks so much for the help http://prntscr.com/7k1j21 What I wish to hide from guests is the Special Events poster on the top, which is a simple html sidebar block
If you wish to hide just that block from guests, then I think your best bet is to change the content type to PHP, and then use a conditional to render the output. You could use the following format:
PHP Code:
global $show;
if (!$show['guest']) { $output = 'HTML goes in here'; return $output; }