Re: Column Layout Grid v2.x Support
Quote:
Originally Posted by
gjh42
I still haven't gotten a definite answer: does the list/grid sorter work independently of the manufacturers filter now for you?
Got it working. Found this thread and did what he did. Sorter Help
Thanks for the replies!
Re: Column Layout Grid v2.x Support
So it sounds like the issue you were experiencing had nothing to do with Column Grid or the list/grid sorter, but some sort of default_filter mods?
Re: Column Layout Grid v2.x Support
Quote:
Originally Posted by
gjh42
So it sounds like the issue you were experiencing had nothing to do with Column Grid or the list/grid sorter, but some sort of default_filter mods?
I think you're right. The grid works. Still having a little problem with the sorter on the manufacturers page though. When on a manufacturer page any selection in the name/price sorter just takes you back to the home page. The other stuff works.
Re: Column Layout Grid v2.x Support
Hello Glenn! I love this module and have a question. I would like to move things around using the css in the list view, but it will also move things in the grid view. Is is possible to have a separate stylesheet for the list view only? I would really appreciate it if you could point me in the right direction :-)
Thanks,
Anne
Re: Column Layout Grid v2.x Support
I don't really think there should be an issue. All final elements of the list view are inside .productListing-data <td> wrappers, while all elements in grid view are in .centerBoxContentsProducts <div> wrappers. Prepending those classes to selectors that need distinction should take care of the problem, affecting only list view or grid view elements respectively.
Re: Column Layout Grid v2.x Support
Quote:
Originally Posted by
gjh42
I don't really think there should be an issue. All final elements of the list view are inside .productListing-data <td> wrappers, while all elements in grid view are in .centerBoxContentsProducts <div> wrappers. Prepending those classes to selectors that need distinction should take care of the problem, affecting only list view or grid view elements respectively.
Ah yes! Thank you so much for pointing me in the right direction. I was trying to make this more complcated than it needed to be. Thank you also for contributing such a great and useful module to the community ;-)
Thanks,
Anne
Re: Column Layout Grid v2.x Support
From a thread discussing styling for the grid view "Sort by:" option:
http://www.zen-cart.com/showthread.p...id-View-Add-On
To put the mod links in a dropdown, add to your stylesheet:
Code:
#gridSorter {position: relative; padding: 0.5em 0;}
#gridSorter ul {display: none;}
#gridSorter:hover ul {display: block; position: absolute; top: 1.2em; padding: 0.5em 2em; margin-left: 0; background: #ddeeff;}
Adjust to taste.
Re: Column Layout Grid v2.x Support
Quote:
Originally Posted by
gjh42
I don't really think there should be an issue. All final elements of the list view are inside .productListing-data <td> wrappers, while all elements in grid view are in .centerBoxContentsProducts <div> wrappers. Prepending those classes to selectors that need distinction should take care of the problem, affecting only list view or grid view elements respectively.
Where can you find them? What is the template file name?
Re: Column Layout Grid v2.x Support
Output content is built both in /includes/modules/your_template/product_listing.php and in /includes/templates/your_template/templates/tpl_modules_product_listing.php... but why do you think you need to access or alter those files? The class/id hooks are already there for you to style in your stylesheet. All you need to do is "view source" on the output page to see the exact structure.
Re: Column Layout Grid v2.x Support
Quote:
Originally Posted by
gjh42
Output content is built both in /includes/modules/your_template/product_listing.php and in /includes/templates/your_template/templates/tpl_modules_product_listing.php... but why do you think you need to access or alter those files? The class/id hooks are already there for you to style in your stylesheet. All you need to do is "view source" on the output page to see the exact structure.
I need to re-arrange the layout of price, add to cart and etc in the column_layout_grid_2_3_1 plugin.
I did view the source but I couldn't figure out where / what php file they are getting generated from?