Results 1 to 4 of 4

Hybrid View

  1. #1
    Join Date
    Nov 2009
    Posts
    11
    Plugin Contributions
    0

    Default How do I set up s main menu item that points to a listing of all the manufacturers?

    I am in the process of setting up a shop for a supplement store. In one sidebar I have all the categories listed. However I would also like to provide a listing of all the manufacturers, and link to this manufacturer list from a main top navigation item. How do I set that up?

    Is the top horizontal navigation only for EZ pages, or is it possible to link to a product listing page from there as well?

  2. #2
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    541
    Plugin Contributions
    0

    Default Re: How do I set up s main menu item that points to a listing of all the manufacturer

    You can create an eZPage that links to a product. Just use the internal link feature. Otherwise there is no built in function for a manufacturer drop down menu. You can have a look in the add add ons if you find something that suits your needs.

  3. #3
    Join Date
    Nov 2009
    Posts
    11
    Plugin Contributions
    0

    Default Re: How do I set up s main menu item that points to a listing of all the manufacturer

    Thank you for the fast reply.

    I was hoping there would be an easy way to list all the manufacturers...it doesn't necessarily has to be a drop down. then clicking a manufacturer name should show up all the products from that particular manufacturer?

    Also, h ow do I create a product page, for ex. "specials" and then link it to an EZpage?

    Here's an example:

    http://osc.template-help.com/zencart..._page=specials

    Thanks soo much for your help!

  4. #4
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    541
    Plugin Contributions
    0

    Default Re: How do I set up s main menu item that points to a listing of all the manufacturer

    There is a manufacturer sidebox in the standard Zencart installation that shows a list of all manufacturers. See this post
    You can use this sidebox, or modify it to suit your needs.


    Here is the code to link to New Products, Specials and the review page:

    If you want to have it as an EZPage, set the internal link as follows

    Code:
    index.php?main_page=specials
    index.php?main_page=reviews
    index.php?main_page=products_new
    If you want to use it in a PHP file, you can use this code:

    Code:
    <?php echo '<a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . '<span>' . HEADER_PRODUCTS_NEW . '</span>' . '</a>'; ?>
    <?php echo '<a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . '<span>' . HEADER_SPECIALS . '</span>' . '</a>'; ?>
    <?php echo '<a href="' . zen_href_link(FILENAME_REVIEWS) . '">' . '<span>' . HEADER_REVIEWS . '</span>' . '</a>'; ?>

 

 

Similar Threads

  1. v154 New Menu Item in Catalog Like Manufacturers
    By mandeepmavi in forum General Questions
    Replies: 2
    Last Post: 2 Oct 2015, 03:05 AM
  2. How do i add an item to the admin menu
    By tcarden in forum General Questions
    Replies: 1
    Last Post: 17 Apr 2013, 11:12 PM
  3. Replies: 25
    Last Post: 24 Jul 2009, 10:57 PM
  4. How do you set that up so when you select the size of an item the price changes?
    By tanyaleann in forum Setting Up Categories, Products, Attributes
    Replies: 14
    Last Post: 23 Sep 2008, 11:49 PM
  5. Looking to change the layout for the page that shows the listing for all products
    By webmiss in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 2 Aug 2007, 12:09 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg