Results 1 to 10 of 18

Hybrid View

  1. #1
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default column layout grid not working?

    i just installed the column layout grid and although Product Listing - Layout Style and
    Product Listing - Columns Per Row...are bothing showing up in admin-configuration-product listing... nothing is changing. My products are still lines up the default way.

    I installed exactly how the instructions said...I am wondering if this is because my version of Zencart is 1.3.0.1 and not 1.3.0.2?

  2. #2
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: column layout grid not working?

    how exactly did you install it?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: column layout grid not working?

    Quote Originally Posted by DrByte
    how exactly did you install it?
    exactly how the instructions said......


    STEP 1. Modification of Code

    Updated code files are included - so the task is simple.
    - Upload the new product_listing.php to ZEN_CART_HOME_DIR/includes/modules/YOURTEMPLATE/product_listing.php

    - Upload the new tpl_modules_product_listing.php to:
    ZEN_CART_HOME_DIR/includes/templates/YOURTEMPLATE/templates/tpl_modules_product_listing.php

    STEP 2. Changing the Database

    Run the following SQL commands into your database.
    The easiest way is to open Admin->Tools->Install SQL Patch and paste them in the box and click Send.

    INSERT INTO configuration (configuration_title, configuration_key, configuration_value,
    configuration_description, configuration_group_id, sort_order,
    last_modified, date_added, use_function, set_function)
    VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows',
    'Select the layout style:<br />Each product can be listed in its own row (rows option)
    or products can be listed in multiple columns per row (columns option)', '8', '40', NULL,
    now(), NULL, 'zen_cfg_select_option(array(\'rows\', \'columns\'),');

    INSERT INTO configuration (configuration_title, configuration_key, configuration_value,
    configuration_description, configuration_group_id, sort_order,
    last_modified, date_added, use_function, set_function)
    VALUES ('Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3',
    'Select the number of columns of products to show in each row in the product listing.
    The default setting is 3.', '8', '41', NULL, now(), NULL, NULL);

  4. #4
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: column layout grid not working?

    Did you substitute "YOURTEMPLATE" with your own custom template name ... ie, in your case: "nightFall"?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #5
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: column layout grid not working?

    i sure did

  6. #6
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: column layout grid not working?

    so any ideas as to what i going on?

  7. #7
    Join Date
    Jan 2011
    Posts
    48
    Plugin Contributions
    0

    Default Re: column layout grid not working?

    Quote Originally Posted by khopek View Post
    exactly how the instructions said......


    STEP 1. Modification of Code

    Updated code files are included - so the task is simple.
    - Upload the new product_listing.php to ZEN_CART_HOME_DIR/includes/modules/YOURTEMPLATE/product_listing.php

    - Upload the new tpl_modules_product_listing.php to:
    ZEN_CART_HOME_DIR/includes/templates/YOURTEMPLATE/templates/tpl_modules_product_listing.php

    STEP 2. Changing the Database

    Run the following SQL commands into your database.
    The easiest way is to open Admin->Tools->Install SQL Patch and paste them in the box and click Send.

    INSERT INTO configuration (configuration_title, configuration_key, configuration_value,
    configuration_description, configuration_group_id, sort_order,
    last_modified, date_added, use_function, set_function)
    VALUES ('Product Listing - Layout Style', 'PRODUCT_LISTING_LAYOUT_STYLE', 'rows',
    'Select the layout style:<br />Each product can be listed in its own row (rows option)
    or products can be listed in multiple columns per row (columns option)', '8', '40', NULL,
    now(), NULL, 'zen_cfg_select_option(array(\'rows\', \'columns\'),');

    INSERT INTO configuration (configuration_title, configuration_key, configuration_value,
    configuration_description, configuration_group_id, sort_order,
    last_modified, date_added, use_function, set_function)
    VALUES ('Product Listing - Columns Per Row', 'PRODUCT_LISTING_COLUMNS_PER_ROW', '3',
    'Select the number of columns of products to show in each row in the product listing.
    The default setting is 3.', '8', '41', NULL, now(), NULL, NULL);
    Ok- I just installed the Grid Column. I followed Step 1. Step 2 I ran the SQL through the admin tools and it said it was accepted.
    I can now change the 'rows' to columns in admin and the number so I know it is in fact there but it does not work.

    Now what do I do with the rest of the code listed here? I don't understand where I add that. (newbie here). Somebody please help me.....
    Thanks!

  8. #8
    Join Date
    Jan 2011
    Posts
    48
    Plugin Contributions
    0

    Default Re: column layout grid not working?

    Quote Originally Posted by davidrayandj View Post
    Ok- I just installed the Grid Column. I followed Step 1. Step 2 I ran the SQL through the admin tools and it said it was accepted.
    I can now change the 'rows' to columns in admin and the number so I know it is in fact there but it does not work.

    Now what do I do with the rest of the code listed here? I don't understand where I add that. (newbie here). Somebody please help me.....
    Thanks!
    ok-never mind, we got it. Don't ask me how or why but it is there so I am not questioning or messing with it...

  9. #9
    Join Date
    Mar 2009
    Posts
    41
    Plugin Contributions
    0

    Default Re: column layout grid not working?

    I spent all day searching to see if Column Layout Grid for Product Listing v.1.3.8 was the most up to date version of the software that I needed to make a grid of my products. I was so happy to finally find this thread.

    But, I failed. I thought I followed all the instructions; I changed from rows to columns, etc. and nothing happened. Above someone mentions making sure of the spelling. Sorry, I have no idea of what they are referring to--newbie here.

    Please help!

    birdwaterandbombay.com
    Last edited by merbay; 6 Feb 2011 at 12:50 AM. Reason: failure to add .com

 

 

Similar Threads

  1. 1.3.9f grid layout not working
    By cshart in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Sep 2010, 10:19 PM
  2. Column Layout Grid Not Working
    By decep in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 15 Jun 2010, 02:33 AM
  3. Column/Grid Mod Not working
    By Harvard in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 24 Jul 2009, 02:10 AM
  4. New Product Listing Error - Column Layout Grid is not working on NewProduct
    By hooai12 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 4 May 2009, 05:27 PM
  5. Column Grid Layout not right
    By bodybangles in forum All Other Contributions/Addons
    Replies: 8
    Last Post: 16 Apr 2007, 11:28 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