Hi,
It's great that we could specify only the Sections/Categories to show on the directory. However, on the Editor, the drop down menu lists those "hidden" Sections, and anyone could easily add content to them. How do I edit the code below to hide a Section ID from the drop-down menu? Thanks in advance.
Here's the relevant part of the code:
| Code: |
<div>
<label for="sectionid">
<?php echo JText::_( 'Section' ); ?>:
</label>
<?php echo $this->lists['sectionid']; ?>
</div>
<div class="wrap"> </div>
<div>
<label for="catid">
<?php echo JText::_( 'Category' ); ?>:
</label>
<?php echo $this->lists['catid']; ?>
</div>
|