I'm trying to add Featured Products to my drop down menu and I'm having a little trouble. I was able to get the link to show up in the menu, but I'm not sure what the link should be.
This is what I added to tpl_drop_menu.php:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_PRODUCTS_FEATURED); ?>"><?php echo HEADER_TITLE_FEATURED_PRODUCTS; ?></a></li>
That link didn't work (although, with an added language define, the menu item shows up just fine), so I tried:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_FEATURED_PRODUCTS_MODULE); ?>"><?php echo HEADER_TITLE_FEATURED_PRODUCTS; ?></a></li>
which doesn't work either.
Can anyone tell me how to code this link? Thanks a bunch.