So I've been messing around with this, and discovered something I found odd.. When viewing a specific link category page (http://yoursite.com/index.php?main_page=links&lPath=2), the "Back" button takes you back to the page you were viewing BEFORE you went to the links page..
I found that odd since I would expect that when clicking the back button from the specific links category, I woud be returned to the links homepage.(http://yoursite.com/index.php?main_page=links)
So I made the following change around line 17 of the /includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php file.
From:
Code:
<div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
To:
Code:
<div class="buttonRow back"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS) . '">' . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) .'</a>'; ?></div>
This returns you to the links homepage (http://yoursite.com/index.php?main_page=links) as one would expect.