You could use a variant of this code to display ez-page links at desired points in the list.
Create a dummy category for each block of links you want, and give it a sort order to put it in the proper place in the list. Then use the elseif snippets to display the links:(Scrap the target="_blank" if you don't want the ez-pages to open in a new window.)PHP Code:if (zen_get_product_types_to_category($box_categories_array[$i]['path']) == 3 or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) {
// skip if this is for the document box (==3)
} elseif ($box_categories_array[$i]['path'] == 'cPath=23') {
$content .= '<a class="ezpLink" href="' . zen_ez_pages_link(6) . '" target="_blank">EZ-Page Number 6</a><br />' . "\n";
$content .= '<a class="ezpLink" href="' . zen_ez_pages_link(7) . '" target="_blank">EZ-Page Number 7</a><br />' . "\n";
} elseif ($box_categories_array[$i]['path'] == 'cPath=24') {
$content .= '<a class="ezpLink" href="' . zen_ez_pages_link(9) . '" target="_blank">EZ-Page Number 9</a><br />' . "\n";
} else {
$content .= '<a class="' . $new_style . '" href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';



