Page 6 of 33 FirstFirst ... 4567816 ... LastLast
Results 51 to 60 of 327
  1. #51
    Join Date
    Mar 2005
    Location
    Tulsa, Ok
    Posts
    174
    Plugin Contributions
    0

    Default Re: Using one single listing template

    Thanks! The divider below the header (when it was originally there) was only there by default, because of the only way I knew at the time to get it to show up BELOW the products. So using the css how you showed me got it exactly how I wanted it anyway. Thanks again! :)
    "You never really understand a person until you consider things from his point of view . . . until you climb into his skin and walk around in it." --Atticus

  2. #52
    Join Date
    Mar 2008
    Posts
    148
    Plugin Contributions
    0

    Default Re: Using one single listing template

    someone should turn this into a downloadable mod.

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

    Default Re: Using one single listing template

    Quote Originally Posted by Qwert302
    someone should turn this into a downloadable mod.
    As there are 4 layouts - 4 mods would be required - care to participate?

  4. #54
    Join Date
    Mar 2008
    Posts
    148
    Plugin Contributions
    0

    Default Re: Using one single listing template

    Quote Originally Posted by kobra View Post
    As there are 4 layouts - 4 mods would be required - care to participate?
    I'm not saying someone should turn this into a mod for the benefit of the community, I'm saying someone should turn this into a mod for the benefit of me!

    I'm sure I could figure it out, but it looks complicated and I'll wait for someone to do it for me :)

    I'll paypal a dollar to whoever mods this.

  5. #55
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Using one single listing template

    Thank you, maybe later, I dont need that one dollar now.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

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

    Default Re: Using one single listing template

    but it looks complicated = paypal a dollar
    Most of us are here for free to assist those who help themselves

    What you want is somtin for nothin!!

    Give a man a fish and feed him for a day - teach him to fish and feed him for life

  7. #57
    Join Date
    Apr 2008
    Location
    Montreal
    Posts
    34
    Plugin Contributions
    0

    Default Re: Using one single listing template

    Hi, First, a big thank you. If i had known this before i would of have save a loooooot of time.

    Anyway, everything things work great except one tiny little thing :

    In All Product and New Product i loose the left margin of the Center Column...
    Isn't suppose to be identical ? So i can't find where this margin should be...

    any idea ?

    My (beta) shop here

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

    Default Re: Using one single listing template

    utopiko,

    First item is you need to optimize your images this is one that you have and others are similar

    1245.72 KB (1275616 bytes) - Yes that is 1.245MB for a 1x1 image
    Displays can only process 72DPI or max about 4500bytes for a 1x1 image any extra is only slowing your page loads down and for someone on a dialup they probably won't even wait

    Add this to your stylesheet.css file
    Code:
    .centerBoxContentsProducts {
            text-align: center;
            }

  9. #59
    Join Date
    Apr 2008
    Location
    Montreal
    Posts
    34
    Plugin Contributions
    0

    Default Re: Using one single listing template

    Thanks for the tip. But i'm still in testing mode and these are unoptimized image.

    The code works in my css, but i still want everything align on the left, like in product listing WITH a margin...
    Now it just center everything...

  10. #60
    Join Date
    Jul 2008
    Posts
    1
    Plugin Contributions
    0

    Default Re: Using one single listing template

    Hi, I wonder if it is possible to ADD the Sorting Option Box (dates, manufacturers,prices etc.) on to the Product Listings page?

    I tried to edit the product listing module but it never worked out...



    Quote Originally Posted by yellow1912 View Post
    That was a mistake I made. Notice the "disp_order_default " ? You can change. And the code below will use products all sort default(PRODUCT_ALL_LIST_SORT_DEFAULT), you can use a different one of course.
    PHP Code:
    <?php
    /**
     * products_all  header_php.php
     *
     * @package page
     * @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: header_php.php 4261 2006-08-25 04:35:20Z ajeh $
     */

      
    require(DIR_WS_MODULES zen_get_module_directory('require_languages.php'));

      
    $breadcrumb->add(NAVBAR_TITLE);
    // display order dropdown
    $disp_order_default PRODUCT_ALL_LIST_SORT_DEFAULT;
      require(
    DIR_WS_MODULES zen_get_module_directory(FILENAME_LISTING_DISPLAY_ORDER));


      
    $listing_sql "SELECT p.products_type, p.products_id, pd.products_name, p.products_image, p.products_price, p.products_tax_class_id,
                                        p.products_date_added, m.manufacturers_name, p.products_model, p.products_quantity, p.products_weight, p.product_is_call,
                                        p.product_is_always_free_shipping, p.products_qty_box_status
                                 FROM " 
    TABLE_PRODUCTS " p
                                 LEFT JOIN " 
    TABLE_MANUFACTURERS " m ON (p.manufacturers_id = m.manufacturers_id), " TABLE_PRODUCTS_DESCRIPTION " pd
                                 WHERE p.products_status = 1
                                 AND p.products_id = pd.products_id
                                 AND pd.language_id = :languageID " 
    $order_by;

      
    $listing_sql $db->bindVars($listing_sql':languageID'$_SESSION['languages_id'], 'integer');
     
    //check to see if we are in normal mode ... not showcase, not maintenance, etc
      
    $show_submit zen_run_normal();

    $define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL,
      
    'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME,
      
    'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER,
      
    'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE,
      
    'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY,
      
    'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT,
      
    'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE);

      
    /*                         ,
      'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW);
      */
      
    asort($define_list);
      
    reset($define_list);
      
    $column_list = array();
      foreach (
    $define_list as $key => $value)
      {
        if (
    $value 0$column_list[] = $key;
      }
    ?>

 

 
Page 6 of 33 FirstFirst ... 4567816 ... LastLast

Similar Threads

  1. Single Listing Template
    By AnglersCorner in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 24 Mar 2015, 01:55 PM
  2. single listing template addon - grid layout for products
    By noyloza in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 14 Nov 2012, 03:45 PM
  3. Column Grid / Single Listing Template Alternative
    By niccol in forum All Other Contributions/Addons
    Replies: 74
    Last Post: 9 Jul 2012, 01:25 PM
  4. Single Listing Template problem
    By gqq0404 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 15 Nov 2010, 08:57 PM
  5. Transfer of one single category from one Zen database to another
    By MeltDown in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 14 Oct 2008, 07:07 PM

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