Using isEditMode for autonav selection

Permalink
When my pages are in edit mode, I can't add a block to the auto nav area. When I mosude over, it highlights but no dialog pops up.

Is there a way I can use isEditMode to make it editable?

How exactly would I do this as I am not a coder?

trixiemay
 
ronyDdeveloper replied on at Permalink Reply
ronyDdeveloper
It might be the block limit on Auto Nav Area. Check your themes header.php file and search for this:
<?php                         
$a = new Area('Header Nav');
$a->setBlockLimit(1);
$a->display($c);
?>


Maybe the area name is different in your case also it might be a global are. But the method called "setBlockLimit" prevent you to add more block.

Rony