I've read the zen cart tutorial about how to do this, but my code is different than in the tutorial so I don't know how to implement it.
This is the relevant section from my tpl_header.php
I want to add a Blog after Sunglasses on my website, oldewatches.com. What I did is just copy the same code as the others used, and changed the link location and text so that it was:Code:<div class="tab"> <!--<a href="#">Home</a> <a href="#">All</a> <a href="#">New</a> <a href="#">Featured</a> <a href="#">Specials</a> <a href="#">Search</a> <a href="#">Shipping</a> <a href="#" style="background:none;">Contact Us</a>--> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?>Home</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'products_new.html">'; ?>New</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '##############-watches-c-339.html">'; ?>Watches</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '##############-swiss-watches-c-340.html">'; ?>Swiss Watches</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '##############-handbags-c-343.html">'; ?>Handbags</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'designer-shoes-c-708.html">'; ?>Shoes</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'designer-belts-c-347.html">'; ?>Belts</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'designer-hats-c-916.html">'; ?>Hats</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'desiger-sunglasses-c-349.html">'; ?> Sunglasses </a> </div>
with www.oldewatches.com/blog being the location of my blog.Code:<?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?>Home</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'products_new.html">'; ?>New</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '##############-watches-c-339.html">'; ?>Watches</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '##############-swiss-watches-c-340.html">'; ?>Swiss Watches</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '##############-handbags-c-343.html">'; ?>Handbags</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'designer-shoes-c-708.html">'; ?>Shoes</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'designer-belts-c-347.html">'; ?>Belts</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'designer-hats-c-916.html">'; ?>Hats</a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'desiger-sunglasses-c-349.html">'; ?> Sunglasses </a> <?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . 'blog/">'; ?>Blog</a>
This doesn't work though...anyone know how I would implement this? Thanks


Reply With Quote
