Page 26 of 29 FirstFirst ... 162425262728 ... LastLast
Results 251 to 260 of 285
  1. #251
    Join Date
    May 2005
    Posts
    535
    Plugin Contributions
    0

    Default Re: Column Layout Grid for Product Listing

    Quote Originally Posted by gjh42 View Post
    Let's see your site to determine the best way of getting your desired alignments. You may need to use the Flexible Product Listing version of Column Grid (attached to post 50 in this thread) to get the fine-tuning.
    url is www.funkymoose.co.uk have at the moment hard coded the width in the product listing page but I think it needs to be done for the specials and the upsell cross sell etc.

    I think I have read about a way of getting this one template to work for all listings (new, all, specials, upsell, cross sell, customers also purchased, etc.)

    Look forward to some advice. Thank you.

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

    Default Re: Column Layout Grid for Product Listing

    Single Listing Template in Free Addons handles using one template for many kinds of listings. Niccol's SNAF is an adaptation of that which might work even better.

  3. #253
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Column Layout Grid for Product Listing

    @MikeyG
    If you are talking about the center box listings that appear on the same page as the main listing then SLT that Glenn mentionned is your best bet. I don't think it will cover the cross sell center box but all the main Zen ones it does.
    As Glenn mentions I wrote an adaptation of SLT for version 1.5 but it only handles the main pages rather than the center-boxes - Just because I never use the center boxes as they are anyway so didn't need it to.

  4. #254
    Join Date
    Mar 2012
    Posts
    4
    Plugin Contributions
    0

    Default Re: Column Layout Grid for Product Listing

    Hi,

    I just installed this module, its working perfect for my categories but as soon as i want to display anything such as new or featured products on my main page they appear as just one each row even tough in the index listing i have ''new products columns per row'' selected as 3 it is still shown as:

    product

    product

    product.

    When i open my category it is like

    product product product.

    I want my new/featured products and all shown as my usual category.

    Do i have some kind of setting wrong?

    Thanks in advance,

    Rovi.

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

    Default Re: Column Layout Grid for Product Listing

    Which mod are you using? The basic Column Layout Grid, or one of the modified versions? Column Grid only applies to the product listing, not new/all/etc. The settings for ''new products columns per row'' refer to the centerboxes which appear below the category or product listing.

    If you are talking about the centerboxes, you might have altered some stylesheet rule that applies to the centerboxes. Eliminating a "float: left;" from a group rule often has that kind of unintended effect.
    Last edited by gjh42; 19 Apr 2012 at 07:21 PM.

  6. #256
    Join Date
    Oct 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Column Layout Grid for Product Listing

    Quote Originally Posted by annasolovushka View Post
    hello guys.
    not found answer on my question:
    1.3.9h
    installed Column Layout / Grid Layout for Products Listing (Add On Module for Zen Cart v1.3.8)
    but also installed Ashley Pink template- almost at same time.
    then I trying to follow instruction:
    admin- tools-install SQL patches
    i have an errors:
    Failed: 2
    Error ERROR: Cannot insert configuration_key "" because it already exists
    Error ERROR: Cannot insert configuration_key "" because it already exists
    Warning Note: 2 statements ignored. See "upgrade_exceptions" table for additional details.


    what should I do???
    please help....
    Anyone find a solution this?

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

    Default Re: Column Layout Grid for Product Listing

    All these errors are saying is that the admin switches are already installed and cannot be installed again. Do the switches exist and work in your Configuration > Product Listing menu?

  8. #258
    Join Date
    Sep 2011
    Posts
    26
    Plugin Contributions
    0

    Default Re: Column Layout Grid for Product Listing

    Hi,

    Im wondering where I could change the default sort order to columnlayout istead of rows?
    I've installed the mod and it works great, but the default order is row...?

    See: http://demo.utkast.org/index.php?mai...dex&cPath=1_31

    To see the column layout you need to choose "Grid" in the dropdownlist.

    Where could I change so that column-layout is default?

    Best regards.
    JDahlbom

  9. #259
    Join Date
    Dec 2011
    Posts
    24
    Plugin Contributions
    0

    Default Re: Column Layout Grid for Product Listing

    Quote Originally Posted by JDAhlbom View Post
    Hi,

    Im wondering where I could change the default sort order to columnlayout istead of rows?
    I've installed the mod and it works great, but the default order is row...?

    See: http://demo.utkast.org/index.php?mai...dex&cPath=1_31

    To see the column layout you need to choose "Grid" in the dropdownlist.

    Where could I change so that column-layout is default?

    Best regards.
    JDahlbom

    Hey JDahlbom,
    I just installed this plugin for my ZC1.5, and was looking for solution exactly as your post.
    So with no one replied to you, I tried out this this way. The outcome looks good, pls see mysite at gobiztunnel.com
    for your reference.


    product_listing.php
    Change: if (!defined('PRODUCT_LISTING_LAYOUT_STYLE')) define('PRODUCT_LISTING_LAYOUT_STYLE',(isset($_GET['view']) ? $_GET['view'] : 'rows'));

    To: if (!defined('PRODUCT_LISTING_LAYOUT_STYLE')) define('PRODUCT_LISTING_LAYOUT_STYLE',(isset($_GET['view']) ? $_GET['view'] : 'columns'));



    tpl_index_product_list.php
    Change: echo zen_draw_pull_down_menu('view', array(array('id'=>'rows','text'=>'List'),array('id'=>'columns','text'=>'Grid')), (isset($_GET['view']) ? $_GET['view'] : 'rows'), 'onchange="this.form.submit()"');

    To: echo zen_draw_pull_down_menu('view', array(array('id'=>'columns','text'=>'Grid'),array('id'=>'rows','text'=>'List')), (isset($_GET['view']) ? $_GET['view'] : 'columns'), 'onchange="this.form.submit()"');


    -songseng

  10. #260
    Join Date
    Sep 2011
    Posts
    26
    Plugin Contributions
    0

    Default Re: Column Layout Grid for Product Listing

    Quote Originally Posted by songseng View Post
    Hey JDahlbom,
    I just installed this plugin for my ZC1.5, and was looking for solution exactly as your post.
    So with no one replied to you, I tried out this this way. The outcome looks good, pls see mysite at gobiztunnel.com
    for your reference.


    product_listing.php
    Change: if (!defined('PRODUCT_LISTING_LAYOUT_STYLE')) define('PRODUCT_LISTING_LAYOUT_STYLE',(isset($_GET['view']) ? $_GET['view'] : 'rows'));

    To: if (!defined('PRODUCT_LISTING_LAYOUT_STYLE')) define('PRODUCT_LISTING_LAYOUT_STYLE',(isset($_GET['view']) ? $_GET['view'] : 'columns'));



    tpl_index_product_list.php
    Change: echo zen_draw_pull_down_menu('view', array(array('id'=>'rows','text'=>'List'),array('id'=>'columns','text'=>'Grid')), (isset($_GET['view']) ? $_GET['view'] : 'rows'), 'onchange="this.form.submit()"');

    To: echo zen_draw_pull_down_menu('view', array(array('id'=>'columns','text'=>'Grid'),array('id'=>'rows','text'=>'List')), (isset($_GET['view']) ? $_GET['view'] : 'columns'), 'onchange="this.form.submit()"');


    -songseng
    Hi mate,

    Thnx for the answer. I've already solved this with another solution. But thnx anyway.

 

 
Page 26 of 29 FirstFirst ... 162425262728 ... LastLast

Similar Threads

  1. Column Layout Grid for Product Listing:
    By rlexyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 17 May 2010, 04:07 AM
  2. Column Layout Grid for Product Listing
    By groove8k in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 14 Dec 2009, 07:38 AM
  3. Column layout grid for product listing - one column only
    By london mummy in forum Templates, Stylesheets, Page Layout
    Replies: 15
    Last Post: 26 Oct 2009, 10:06 AM
  4. Column Layout Grid for Product Listing v1.3.6 + v1.3.7
    By weflorencekoh in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 14 May 2007, 03:21 AM
  5. Column Layout Grid for Product Listing
    By mohinder in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Mar 2007, 06:46 AM

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