Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 45
  1. #11
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Solution: Displaying all products and new products listing in column/grid

    The category/subcategory listing should already show in a grid (defaults to 3 per row). If they only display one per row, you have probably made a stylesheet change that had wider effect than you intended (eliminating a float: left;).

    Post a link to see your site live so we can advise correctly.

  2. #12
    Join Date
    Nov 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    I do hate posting in a thread that was originally created in 2007, but I don’t see the use of creating another thread.

    So basically, what I would like is if someone can post the code for how to change the featured products page. I'm not lazy. I have tried! But I must obviously be missing something if nothing is appearing on the page.

    Once again, I'm really sorry!

    HTML Code:
    <?php
    /**
     * Module Template
     *
     * Loaded automatically by index.php?main_page=featured_products.<br />
     * Displays listing of Featured Products
     *
     * @package templateSystem
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_modules_products_featured_listing.php 6096 2007-04-01 00:43:21Z ajeh $
     */
    ?>
    <table border="0" width="100%" cellspacing="2" cellpadding="2">
              <tr>
                <td colspan="3"><hr /></td>
              </tr>
    <?php
      $group_id = zen_get_configuration_key_value('PRODUCT_FEATURED_LIST_GROUP_ID');
    
      if ($featured_products_split->number_of_rows > 0) {
        $featured_products = $db->Execute($featured_products_split->sql_query);
        $row_counter = 0; 
        while (!$featured_products->EOF) {
          $row_counter++; 
    
          if (PRODUCT_FEATURED_LIST_IMAGE != '0') {
            if ($featured_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) {
              $display_products_image = str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_IMAGE, 3, 1));
            } else {
              $display_products_image = '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $featured_products->fields['products_image'], $featured_products->fields['products_name'], IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH, IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT) . '</a>' . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_IMAGE, 3, 1));
            }
          } else {
            $display_products_image = '';
          }
    
          if (PRODUCT_FEATURED_LIST_NAME != '0') {
            $display_products_name = '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '"><strong>' . $featured_products->fields['products_name'] . '</strong></a>' . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_NAME, 3, 1));
          } else {
            $display_products_name = '';
          }
    
          if (PRODUCT_FEATURED_LIST_MODEL != '0' and zen_get_show_product_switch($featured_products->fields['products_id'], 'model')) {
            $display_products_model = TEXT_PRODUCTS_MODEL . $featured_products->fields['products_model'] . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_MODEL, 3, 1));
          } else {
            $display_products_model = '';
          }
    
          if (PRODUCT_FEATURED_LIST_WEIGHT != '0' and zen_get_show_product_switch($featured_products->fields['products_id'], 'weight')) {
            $display_products_weight = TEXT_PRODUCTS_WEIGHT . $featured_products->fields['products_weight'] . TEXT_SHIPPING_WEIGHT . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_WEIGHT, 3, 1));
          } else {
            $display_products_weight = '';
          }
    
          if (PRODUCT_FEATURED_LIST_QUANTITY != '0' and zen_get_show_product_switch($featured_products->fields['products_id'], 'quantity')) {
            if ($featured_products->fields['products_quantity'] <= 0) {
              $display_products_quantity = TEXT_OUT_OF_STOCK . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_QUANTITY, 3, 1));
            } else {
              $display_products_quantity = TEXT_PRODUCTS_QUANTITY . $featured_products->fields['products_quantity'] . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_QUANTITY, 3, 1));
            }
          } else {
            $display_products_quantity = '';
          }
    
          if (PRODUCT_FEATURED_LIST_DATE_ADDED != '0' and zen_get_show_product_switch($featured_products->fields['products_id'], 'date_added')) {
            $display_products_date_added = TEXT_DATE_ADDED . ' ' . zen_date_long($featured_products->fields['products_date_added']) . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_DATE_ADDED, 3, 1));
          } else {
            $display_products_date_added = '';
          }
    
          if (PRODUCT_FEATURED_LIST_MANUFACTURER != '0' and zen_get_show_product_switch($featured_products->fields['products_id'], 'manufacturer')) {
            $display_products_manufacturers_name = ($featured_products->fields['manufacturers_name'] != '' ? TEXT_MANUFACTURER . ' ' . $featured_products->fields['manufacturers_name'] . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_MANUFACTURER, 3, 1)) : '');
          } else {
            $display_products_manufacturers_name = '';
          }
    
          if ((PRODUCT_FEATURED_LIST_PRICE != '0' and zen_get_products_allow_add_to_cart($featured_products->fields['products_id']) == 'Y')  and zen_check_show_prices() == true) {
            $products_price = zen_get_products_display_price($featured_products->fields['products_id']);
            $display_products_price = TEXT_PRICE . ' ' . $products_price . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_LIST_PRICE, 3, 1)) . (zen_get_show_product_switch($featured_products->fields['products_id'], 'ALWAYS_FREE_SHIPPING_IMAGE_SWITCH') ? (zen_get_product_is_always_free_shipping($featured_products->fields['products_id']) ? TEXT_PRODUCT_FREE_SHIPPING_ICON . '<br />' : '') : '');
          } else {
            $display_products_price = '';
          }
    
    // more info in place of buy now
          if (PRODUCT_FEATURED_BUY_NOW != '0' and zen_get_products_allow_add_to_cart($featured_products->fields['products_id']) == 'Y') {
            if (zen_has_product_attributes($featured_products->fields['products_id'])) {
              $link = '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a>';
            } else {
    //          $link= '<a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS, zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT) . '</a>';
              if (PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART > 0 && $featured_products->fields['products_qty_box_status'] != 0) {
    //            $how_many++;
                $link = TEXT_PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART . "<input type=\"text\" name=\"products_id[" . $featured_products->fields['products_id'] . "]\" value=\"0\" size=\"4\" />";
              } else {
                $link = '<a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS, zen_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products->fields['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_BUY_NOW, BUTTON_BUY_NOW_ALT) . '</a>&nbsp;';
              }
            }
    
            $the_button = $link;
            $products_link = '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a>';
            $display_products_button = zen_get_buy_now_button($featured_products->fields['products_id'], $the_button, $products_link) . '<br />' . zen_get_products_quantity_min_units_display($featured_products->fields['products_id']) . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_BUY_NOW, 3, 1));
          } else {
            $link = '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a>';
            $the_button = $link;
            $products_link = '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), 'products_id=' . $featured_products->fields['products_id']) . '">' . MORE_INFO_TEXT . '</a>';
            $display_products_button = zen_get_buy_now_button($featured_products->fields['products_id'], $the_button, $products_link) . '<br />' . zen_get_products_quantity_min_units_display($featured_products->fields['products_id']) . str_repeat('<br clear="all" />', substr(PRODUCT_FEATURED_BUY_NOW, 3, 1));
          }
    
          if (PRODUCT_FEATURED_LIST_DESCRIPTION != '0') {
            $disp_text = zen_get_products_description($featured_products->fields['products_id']);
            $disp_text = zen_clean_html($disp_text);
    
            $display_products_description = stripslashes(zen_trunc_string($disp_text, 150, '<a href="' . zen_href_link(zen_get_info_page($featured_products->fields['products_id']), ‘products_id=' . $featured_products->fields['products_id']) . '"> ' . MORE_INFO_TEXT . '</a>'));
          } else {
            $display_products_description = '';
          }
    
    ?>
               
                <?php  
                if(($row_counter-1)%4 == 0) 
                { 
                ?> 
                <tr> 
                <?php 
                } 
                ?> 
                <td width="<?php echo IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH + 10; ?>" valign="top" class="main" align="center">
                  <?php
    
                    $disp_sort_order = $db->Execute("select configuration_key, configuration_value from " . TABLE_CONFIGURATION . " where configuration_group_id='" . $group_id . "' and (configuration_value >= 1000 and configuration_value <= 1999) order by LPAD(configuration_value,11,0)");
                    while (!$disp_sort_order->EOF) {
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_LIST_IMAGE') {
                        echo $display_products_image;
                      }
    
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_BUY_NOW') {
                        echo $display_products_button;
                      }
    
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_LIST_NAME') {
                        echo $display_products_name;
                      }
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_LIST_PRICE') {
                        echo $display_products_price;
                      }
    
                      $disp_sort_order->MoveNext();
                    }
    
                    $disp_sort_order = $db->Execute("select configuration_key, configuration_value from " . TABLE_CONFIGURATION . " where configuration_group_id='" . $group_id . "' and (configuration_value >= 2000 and configuration_value <= 2999) order by LPAD(configuration_value,11,0)");
                    while (!$disp_sort_order->EOF) {
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_LIST_IMAGE') {
                        echo $display_products_image;
                      }
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_BUY_NOW') {
                        echo $display_products_button;
                      }
    
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_LIST_NAME') {
                        echo $display_products_name;
                      }
                      if ($disp_sort_order->fields['configuration_key'] == 'PRODUCT_FEATURED_LIST_PRICE') {
                        echo $display_products_price;
                      }
    
                      $disp_sort_order->MoveNext();
                    }
                  ?>
                </td>
    
              </tr>
    
    
    
    <?php
          $featured_products->MoveNext();
        }
      } else {
    ?>
              <tr>
                <td class="main" colspan="2"><?php echo TEXT_NO_FEATURED_PRODUCTS; ?></td>
              </tr>
    <?php
      }
    ?>
    </table>

  3. #13
    Join Date
    Nov 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    In addition to this (sorry for adding more)

    but I was curious if someone could tell me how I can change the order the different product details are displayed in. I would like the name of the product to show first, then the image, then the cost and finally the add. Also, how would I remove max:50?

    I'm attaching a image to explain what I am talking about. I'm sorry but I cannot attach a link because I'm currently using xampp.
    Sorry (yet again) for my complete lack of knowledge!
    ~ Gosh, I said sorry a billion time in this post!


  4. #14
    Join Date
    Nov 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    A little harmless bump

  5. #15
    Join Date
    Apr 2009
    Location
    Portland, OR
    Posts
    106
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    I like this solution, I was going to try on my custom template. before I do that I do have a question, My "All Products" and "New Products" are now " New Designs" and "View All Designs", will these code work for new names? are there any locations that I need to modify to match my namings?

    Thanks

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

    Default Re: Solution: Displaying all products and new products listing in column/grid

    If you have done the renaming correctly by editing a define file, it will make no difference to the code function.

    Note that this mod will not show the description at all, whether you have set it to display or not. You can fix this by adding a line in the middle of the main new code section. This code is poorly adapted as is, with unnecessary duplication, but if you want to display the description in a place of your choosing, the duplication becomes necessary.

    Original mod:
    PHP Code:
    //...
          if (PRODUCT_ALL_LIST_DESCRIPTION != '0') {
            $disp_text = zen_get_products_description($products_all->fields['products_id']);
            $disp_text = zen_clean_html($disp_text);

            $display_products_description = stripslashes(zen_trunc_string($disp_text, 150, '<a href="' . zen_href_link(zen_get_info_page($products_all->fields['products_id']), 'products_id=' . $products_all->fields['products_id']) . '"> ' . MORE_INFO_TEXT . '</a>'));
          } else {
            $display_products_description = '';
          }

    ?>
              
                <?php 
                
    if(($row_counter-1)%== 0)
                {
                
    ?>
                <tr>
                <?php
                
    }
                
    ?>
                <td width="<?php echo IMAGE_PRODUCT_ALL_LISTING_WIDTH 10?>" valign="top" class="main" align="center">
                  <?php
                  
                    $disp_sort_order 
    $db->Execute("select configuration_key, configuration_value from " TABLE_CONFIGURATION " where configuration_group_id='" $group_id "' and (configuration_value >= 1000 and configuration_value <= 1999) order by LPAD(configuration_value,11,0)");
                    while (!
    $disp_sort_order->EOF) {
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_IMAGE') {
                        echo 
    $display_products_image;
                      }
                      
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_BUY_NOW') {
                        echo 
    $display_products_button;
                      }

                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_NAME') {
                        echo 
    $display_products_name;
                      }                  
                      
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_PRICE') {
                        echo 
    $display_products_price;
                      }
                      
                      
    $disp_sort_order->MoveNext();
                    }
                    
                    
    $disp_sort_order $db->Execute("select configuration_key, configuration_value from " TABLE_CONFIGURATION " where configuration_group_id='" $group_id "' and (configuration_value >= 2000 and configuration_value <= 2999) order by LPAD(configuration_value,11,0)");
                    while (!
    $disp_sort_order->EOF) {
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_IMAGE') {
                        echo 
    $display_products_image;
                      }
                     
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_BUY_NOW') {
                        echo 
    $display_products_button;
                      }

                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_NAME') {
                        echo 
    $display_products_name;
                      }                  
                      
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_PRICE') {
                        echo 
    $display_products_price;
                      }
                      
                      
    $disp_sort_order->MoveNext();
                    }
                  
    ?>
                </td>
                
              
             
    <?php
          $products_all
    ->MoveNext();
        }
      } else {
    ?>
              <tr>
                <td class="main" colspan="2"><?php echo TEXT_NO_ALL_PRODUCTS?></td>
              </tr>
    <?php
      
    }
    ?>
    </tr>
    </table>
    Add a line
    echo $display_products_description . '<br />';

    Remove the hard-coded styling from the table cell, as this is better controlled in the stylesheet.
    width="<?php echo IMAGE_PRODUCT_ALL_LISTING_WIDTH + 10; ?>" valign="top" ... align="center"

    The more I look at this the more logic errors I find...
    The row logic is set to make rows of four products
    if(($row_counter-1)%4 == 0)
    but the old row is never closed when the new one is started.
    The first row is given the odd/even classname, but subsequent rows have no classname (the odd/even logic is out of the loop).
    The odd/even logic is based on two alternating products, and will not work correctly for other numbers even if it is moved to a useful location. Of course, the whole thing is not applicable to this layout and needs to be rethought.
    I have done a basic functional version of row naming.

    Slightly improved version:
    PHP Code:
    <?php
    /**
     * Module Template
     *
     * Loaded automatically by index.php?main_page=products_all.<br />
     * Displays listing of All Products
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_modules_products_all_listing.php 4629 2006-09-28 15:29:18Z ajeh $
     */
    ?>
    <table border="0" width="100%" cellspacing="2" cellpadding="2">
              <tr>
                <td colspan="3"><hr /></td>
              </tr>

    <?php
      $group_id 
    zen_get_configuration_key_value('PRODUCT_ALL_LIST_GROUP_ID');

      if (
    $products_all_split->number_of_rows 0) {
        
    $products_all $db->Execute($products_all_split->sql_query);
        
    $row_counter 1;
        
    $col_counter 0;
        while (!
    $products_all->EOF) {

          if (
    PRODUCT_ALL_LIST_IMAGE != '0') { 

    //lots of code...

          
    if (PRODUCT_ALL_LIST_DESCRIPTION != '0') {
            
    $disp_text zen_get_products_description($products_all->fields['products_id']);
            
    $disp_text zen_clean_html($disp_text);

            
    $display_products_description stripslashes(zen_trunc_string($disp_text150'<a href="' zen_href_link(zen_get_info_page($products_all->fields['products_id']), 'products_id=' $products_all->fields['products_id']) . '"> ' MORE_INFO_TEXT '</a>'));
          } else {
            
    $display_products_description '';
          }

    ?>
              
                <?php 

                
    if($col_counter == 3) { //start a new row - change "3" to products per row desired
                  
    $col_counter = -1;//reset column
                  
    if($row_counter 1) {
                    echo 
    '</tr>'//close the previous <tr> for all but the first row 
                  
    }
                  
    $row_counter++;//increment row
                  
    echo '<tr class="productListing-row">';
                }
                
    $col_counter++;//increment column
                
    ?>
                <td  class="main">
                  <?php
                  
                    $disp_sort_order 
    $db->Execute("select configuration_key, configuration_value from " TABLE_CONFIGURATION " where configuration_group_id='" $group_id "' and (configuration_value >= 1000 and configuration_value <= 1999) order by LPAD(configuration_value,11,0)");
                    while (!
    $disp_sort_order->EOF) {
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_IMAGE') {
                        echo 
    $display_products_image;
                      }
                      
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_BUY_NOW') {
                        echo 
    $display_products_button;
                      }

                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_NAME') {
                        echo 
    $display_products_name;
                      }                  
                      
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_PRICE') {
                        echo 
    $display_products_price;
                      }
                      
                      
    $disp_sort_order->MoveNext();
                    }
                    
                    echo 
    $display_products_description '<br />'//add product description if enabled

                    
    $disp_sort_order $db->Execute("select configuration_key, configuration_value from " TABLE_CONFIGURATION " where configuration_group_id='" $group_id "' and (configuration_value >= 2000 and configuration_value <= 2999) order by LPAD(configuration_value,11,0)");
                    while (!
    $disp_sort_order->EOF) {
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_IMAGE') {
                        echo 
    $display_products_image;
                      }
                     
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_BUY_NOW') {
                        echo 
    $display_products_button;
                      }

                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_NAME') {
                        echo 
    $display_products_name;
                      }                  
                      
                      if (
    $disp_sort_order->fields['configuration_key'] == 'PRODUCT_ALL_LIST_PRICE') {
                        echo 
    $display_products_price;
                      }
                      
                      
    $disp_sort_order->MoveNext();
                    }
                  
    ?>
                </td>
                
              
             
    <?php
          $products_all
    ->MoveNext();
        }
      } else {
    ?>
              <tr>
                <td class="main" colspan="2"><?php echo TEXT_NO_ALL_PRODUCTS?></td>
              </tr>
    <?php
      
    }
    ?>
    </tr>
    </table>
    Add to your stylesheet
    Code:
    .productListing-row .main {
        vertical-align: top;
        text-align: center;
        }
    Note: This is not tested, so might have a typo or two. if you try it, please post with results.

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

    Default Re: Solution: Displaying all products and new products listing in column/grid

    One typo - left out the initial <tr> for the first product row:
    Code:
    <table border="0" width="100%" cellspacing="2" cellpadding="2">
              <tr>
                <td colspan="3"><hr /></td>
              </tr>
              <tr class="productListing-row">

    Forgot to mention in the previous post:

    The description can be located in this layout even though there is no admin setting for description location, by putting elements to appear above it in the "left column" ("1") and elements to appear below it in the right column ("2").
    Last edited by gjh42; 19 Jan 2010 at 09:12 PM.

  8. #18
    Join Date
    Feb 2010
    Posts
    10
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    Did everybody just overlooked Edessa question?

    How do we apply this to the featured product listing page?


    Thanks

  9. #19
    Join Date
    Jul 2009
    Posts
    127
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    I was comparing the template files the ones posted in 2007 as well as the ones posted in 2010, and the files seem drastically different.
    For one the version from 2007 uses a product id while the 2010 version uses a cPath. I'm not sure if this affects anything but I want to be sure. How can this be accomplished for 1.3.x

  10. #20
    Join Date
    Mar 2011
    Posts
    19
    Plugin Contributions
    0

    Default Re: Solution: Displaying all products and new products listing in column/grid

    I followed gjh42's advice and it does partially work. I'm having two problems with it.

    1. Adding the info:
      Code:
      .productListing-row .main {
          vertical-align: top;
          text-align: center;
          }
      to my stylesheet doesn't do anything. Is there a specific part of the stylesheey I should add this code to?

    2. When the products in All Products and New Products were shown in rows, the information was shown in the order:
      Code:
      Product name
      Price
      Quantity box
      Description
      Now that they are in rows, the information is now in the order:
      Code:
      Quantity box
      Description
      Product name
      Price
      Looking at the code, everything seems to be in the right order. Does anyone have any suggestions on the cause of this?

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. Three Column Grid for New/All Products
    By DallasNovelty in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 4 Feb 2011, 12:47 PM
  2. Replies: 4
    Last Post: 3 Jun 2010, 11:44 PM
  3. Column Layout Grid - All Products
    By fashion2 in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 2 Dec 2009, 04:19 PM
  4. Home Page Products Displaying in a Single Column and not in a Grid Display
    By probbins in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 23 Feb 2009, 01:42 AM
  5. hide right sidebox for products-all and products-new listing
    By Jmus in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 26 Apr 2008, 05:45 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR