I currently have a button on my test site that I want to hide if the current_users id = number from mysql
the current code is…
[php]
<div class="button_edit_controls button_current">
<button id="button_edit"><?php $abl->_("button.edit"); ?></button>
</div>
<?php endif; ?>[/php]
I want to hide it if let’s say || $current_user->id==182 || $current_user->id==183 etc… but I just can’t get it to work?
Any ideas?