If you need to display or do something in your concrete5 theme when the site is in edit mode, use this code:
<?php global $c; if ($c->isEditMode()) { ?> Do something here <?php } ?>
If you need to display or do something in your concrete5 theme when the site is in edit mode, use this code:
<?php global $c; if ($c->isEditMode()) { ?> Do something here <?php } ?>