Results 1 to 4 of 4
  1. #1
    Join Date
    Nov 2007
    Posts
    71
    Plugin Contributions
    0

    Default Category Thumbnails below New Products box

    Hello, On my Index page, I have The main_page.php then it shows Category Thumbnails and below I have a New Products box displayed with 1 row of products. Is it possible to get the Category Thumbnails to show at the bottom of the page?

    There doesnt seem to be an order number for displaying the Categorys on the index page unless ive missed it somewhere?

    Can anyone advise
    Thank you
    Sam

    P.S Merry Christmas

  2. #2
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Category Thumbnails below New Products box

    Assuming that you have your own template - get a copy of the template default tpl_main_page.php file and reorder the display of these items in that file.

    Save it and upload to your template name/common/ folder

  3. #3
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Category Thumbnails below New Products box

    For that page, there is not an admin option to display the centerboxes above the listing. Edit /includes/templates/your_template/templates/tpl_index_categories.php, and find the following block of code:
    PHP Code:
    <!-- BOF: Display grid of available sub-categories, if any -->
    <?php
      
    if (PRODUCT_LIST_CATEGORY_ROW_STATUS == 0) {
        
    // do nothing
      
    } else {
        
    // display subcategories
    /**
     * require the code to display the sub-categories-grid, if any exist
     */
       
    require($template->get_template_dir('tpl_modules_category_row.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_modules_category_row.php');
      }
    ?>
    <!-- EOF: Display grid of available sub-categories -->
    Move it to the bottom of the file, just above the

    </div>

    to get
    PHP Code:
    } // !EOF
    ?>

    <!-- BOF: Display grid of available sub-categories, if any -->
    <?php
      
    if (PRODUCT_LIST_CATEGORY_ROW_STATUS == 0) {
        
    // do nothing
      
    } else {
        
    // display subcategories
    /**
     * require the code to display the sub-categories-grid, if any exist
     */
       
    require($template->get_template_dir('tpl_modules_category_row.php',DIR_WS_TEMPLATE$current_page_base,'templates'). '/tpl_modules_category_row.php');
      }
    ?>
    <!-- EOF: Display grid of available sub-categories -->

    </div>
    Last edited by gjh42; 25 Dec 2007 at 04:54 AM.

  4. #4
    Join Date
    Nov 2007
    Posts
    71
    Plugin Contributions
    0

    Default Re: Category Thumbnails below New Products box

    Fantastic, thank you very much for the replies :)

 

 

Similar Threads

  1. v139h Category New Products Box shows inactive products
    By movermedia in forum Bug Reports
    Replies: 3
    Last Post: 15 Oct 2012, 08:11 PM
  2. v139h preventing category, and products display in new box
    By keneso in forum General Questions
    Replies: 13
    Last Post: 27 May 2012, 03:58 PM
  3. New Products Category Box
    By TrevorJ in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 23 Nov 2011, 11:39 AM
  4. Exclude Category from New Products Box?
    By deepfrydaniel in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 25 Aug 2007, 08:22 PM
  5. Displaying category name under new items thumbnails
    By aeolidia in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 20 Dec 2006, 12:05 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