AutoNav Ignoring Times Release Settings
Permalink
I have advanced permission turned on and a custom template for my autonav to display my menu in a Select Box...however, it is displaying pages that have an "end date" that is passed as set in the Timed Release Settings on the Page Permissions.
Does the autonav ignore this, or did I miss something somewhere.
Here is the website in question:
http://www.metrosportscommission.com...
and here is the autonav template for the select box in the left column:
Does the autonav ignore this, or did I miss something somewhere.
Here is the website in question:
http://www.metrosportscommission.com...
and here is the autonav template for the select box in the left column:
<?php defined('C5_EXECUTE') or die("Access Denied."); $aBlocks = $controller->generateNav(); $c = Page::getCurrentPage(); echo("<ul class=\"nav-header\">"); $nh = Loader::helper('navigation'); ?> <div class="ccm-page-list upcoming"> <h3>Upcoming MSC Games</h3> <form action="../"> <select onChange="window.open(this.options[this.selectedIndex].value,'_top')"> <option value="">Choose an Upcoming Game...</option> <?php foreach($aBlocks as $ni) { $_c = $ni->getCollectionObject(); if (!$_c->getCollectionAttributeValue('exclude_nav') && !$_c->getCollectionAttributeValue('exclude_select_box')) { ?>
Viewing 15 lines of 23 lines. View entire code block.