Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 27
  1. #11
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Quote Originally Posted by DrByte
    If you were to set up a fresh install of Zen Cart using demo products (in a new folder and new database), make sure it's displaying normally, and then install the column-grid layout files and database-settings, does it work properly?
    when i setup a fresh install using demo products, the products on the main page showed in a grid style without image handler installed.

    For me, it's only in the "NEW PRODUCTS" and "ALL PRODUCTS" that is showing up in one row. In the categories, the products are showing in the grid layout.

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

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    That is normal behaviour.

    If you would like a grid layout for the "all products" and "new products" listings, you will have to rewrite the modules and templates for those pages as well.
    .

    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. #13
    Join Date
    Aug 2006
    Location
    portlandish, oregon
    Posts
    799
    Plugin Contributions
    0

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Quote Originally Posted by DrByte
    That is normal behaviour.

    If you would like a grid layout for the "all products" and "new products" listings, you will have to rewrite the modules and templates for those pages as well.
    Ahhh! Well that makes sense, but is now driving me crazy. I guess I never noticed it didn't work for those pages before. So I guess I'm stuck with that since I do not know anything about rewriting stuff.

  4. #14
    Join Date
    Sep 2006
    Location
    U.K.
    Posts
    162
    Plugin Contributions
    0

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    I have just set up a new install on 1.3.5 + future_zen and all is working OK so far.
    Now I try to install Column layout and have installed the files and when I try to cut+paste sql notes I get this message:

    "An appropriate representation of the requested resource /admin/sqlpatch.php could not be found on this server."

    I have no idea what it means.

    Anyone please.
    Stephen.
    - ZenCart v:1.3.9h - Template: Simply_Kerrin- Column layout grid. v:1.3.6 - big royal mail. v:2.3.4 - stock by attributes 4.7 - Logo Sidebox - SitemapXML v2s.

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

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Quote Originally Posted by SilverKop
    I have just set up a new install on 1.3.5 + future_zen and all is working OK so far.
    Now I try to install Column layout and have installed the files and when I try to cut+paste sql notes I get this message:

    "An appropriate representation of the requested resource /admin/sqlpatch.php could not be found on this server."

    I have no idea what it means.

    Anyone please.
    Make sure what you're pasting looks like this

    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);
    OR you can always just upload the SQL file that comes with the installation

    and make sure you have the column layout grid for 1.3.5

  6. #16
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Quote Originally Posted by SilverKop
    "An appropriate representation of the requested resource /admin/sqlpatch.php could not be found on this server."
    This is a result of your webhost running mod_security and having it configured to block SQL commands.

    You might have better success running the commands via phpMyAdmin instead.
    .

    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.

  7. #17
    Join Date
    Sep 2006
    Location
    U.K.
    Posts
    162
    Plugin Contributions
    0

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    DR.

    That is a first for me but it worked OK and columns set in web.

    One foot forward and onward.

    Many thanks.
    Stephen.
    - ZenCart v:1.3.9h - Template: Simply_Kerrin- Column layout grid. v:1.3.6 - big royal mail. v:2.3.4 - stock by attributes 4.7 - Logo Sidebox - SitemapXML v2s.

  8. #18
    Join Date
    Nov 2005
    Location
    Narnia
    Posts
    822
    Plugin Contributions
    0

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Quote Originally Posted by kobra
    reddog73 & others,

    Try adding/editing this in your stylesheet.css file
    Code:
    .categoryListBoxContents {
    	float: left;
    	}
    Wow Kobra you're a lifesaver. I had been looking all over, ripping apart my viewsource and stylesheet trying to figure that one out...my subcategory images were all in a vertical line to the left (all in one column) rather than three subcategories per row as I wanted. For the life of me the forum search wasn't providing anything helpful until I came across your post. I sort of figured there was an easy solution but I didn't know what it was!

    PS Hopefully I've loaded enough keywords in here to help the next person wanting to find this answer.

  9. #19
    Join Date
    Mar 2006
    Location
    Tennessee
    Posts
    310
    Plugin Contributions
    0

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Hopefully someone can help me too.

    I installed the Column Grid Layout, but didn't like the way it looked/lined up. So, I changed the setting back to "rows" in the Admin>Config>Product Listing.

    Now I've got duplicate product descriptions!

    One lined up nicely beside the image (the way I want it-except for the centered alignment) and another below the image.

    I KNOW it's somewhere in my template, but I don't even know where to begin to look. I can change the template setting in Admin to "Classic" and the second product description goes away.

    Any ideas?

    Here's the page...LINK\

    Edited to Add: 1.3.5 fresh install - and I used the mod for this version.
    Last edited by Boggled; 2 Oct 2006 at 12:43 AM.

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

    Default Re: Problem with Column Grid Layout in 1.3.5 - Please Help!

    Boggled;

    Looked at the link and did not see "Now I've got duplicate product descriptions!"...

    Did you get this sorted?
    Zen-Venom Get Bitten

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v139h Column Layout Grid v1.3.8 Problem with first row
    By AvaAdorn in forum Templates, Stylesheets, Page Layout
    Replies: 18
    Last Post: 22 Aug 2013, 07:02 AM
  2. Replies: 2
    Last Post: 23 Mar 2012, 03:28 PM
  3. Replies: 5
    Last Post: 17 Feb 2010, 05:13 PM
  4. Please help with product column layout problem
    By elnaraniall in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 18 Dec 2009, 12:47 AM
  5. Problem with column layout grid
    By erezw in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 14 Nov 2008, 10:35 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