I would like to show the item table or item list with all the links to my items in each item page.
basically trying to copy the item list that appears in the category view so that it appears when items are being viewed as well
Anyone know how to achieve this
I have been trying to copy this
<?php
// Displays the Table of Items in Category View
if ( $items ) {
HTML_content::showTable( $params, $items, $gid, $catid, $id, $pageNav, $access, $sectionid, $lists );
} else if ( $catid ) {
?>
<br />
<?php echo _EMPTY_CATEGORY; ?>
<br /><br />
<?php
}
?>
and then to paste it into the * Show a content item part of content.html.php
but it doesnt seem to be working
any ideas

