Page 2 of 2
Re: [vQmod] Grid View by Default 1.5.x
Posted: Sat Sep 03, 2011 1:45 am
by uksitebuilder
Are there any errors in it?
Ignore the entries where it says Used Cached File (or similar)
Re: [vQmod] Grid View by Default 1.5.x
Posted: Sat Sep 03, 2011 1:53 am
by werepair
hi, there are no reported errors that i can see.
regards
Re: [vQmod] Grid View by Default 1.5.x
Posted: Sat Sep 03, 2011 2:00 am
by uksitebuilder
is there a link to your site I can view ?
Re: [vQmod] Grid View by Default 1.5.x
Posted: Sat Sep 03, 2011 2:07 am
by werepair
uksitebuilder wrote:is there a link to your site I can view ?
hi, pm sent.
best regards
Re: [vQmod] Grid View by Default 1.5.x
Posted: Sat Sep 03, 2011 3:01 am
by uksitebuilder
it's because you are using a custom template.
You need to edit the vqmod file.
Replace all occurrences of 'default' with your theme name
Re: [vQmod] Grid View by Default 1.5.x
Posted: Mon Sep 05, 2011 7:32 pm
by werepair
hI forgot to update the post, everything is working 100%, thanks for the support, much appreciated.
best regards
Re: [vQmod] Grid View by Default 1.5.x
Posted: Fri Sep 09, 2011 8:51 pm
by highvibes
Nice one Simon!
Re: [vQmod] Grid View by Default 1.5.x
Posted: Mon Nov 21, 2011 2:32 pm
by hbg
Many thanks.
Re: [vQmod] Grid View by Default 1.5.x
Posted: Fri Jul 20, 2012 1:23 am
by tomsworkshop
thanks for the mod.
Re: [vQmod] Grid View by Default 1.5.x
Posted: Thu Oct 11, 2012 1:07 am
by innocrea
To all people who want to get Grid view default:
All you have to do is edit just 1 single word in 1 line of code from 'list' to 'grid'.
go to:
/catalog/view/theme/default/template/product/category.tpl
edit line 199 (standard installation)
old one:
Code: Select all
if (view) {
display(view);
} else {
display('list');
New code:
Code: Select all
if (view) {
display(view);
} else {
display('grid');
That's it!