Page 1 of 1

Need help

Posted: Sat Jan 17, 2015 3:20 am
by igor083
i need to change sidebar module view

Re: Need help

Posted: Sat Jan 17, 2015 11:28 am
by viethemes
igor083 wrote:i need to change sidebar module view
Hi,
Do you mean you want to display the product module as list intead of grid?

Re: Need help

Posted: Sat Jan 24, 2015 1:51 am
by igor083
viethemes wrote:
igor083 wrote:i need to change sidebar module view
Hi,
Do you mean you want to display the product module as list intead of grid?
yes

Re: Need help

Posted: Sun Jan 25, 2015 10:40 pm
by viethemes
igor083 wrote:
viethemes wrote:
igor083 wrote:i need to change sidebar module view
Hi,
Do you mean you want to display the product module as list intead of grid?
yes
Hi,
To sovle it, you can use my extension: Custom JavaScript and add this code:

Code: Select all

<script>
$(document).ready(function () {
$('#column-right .col-lg-3.col-md-3.col-sm-6').removeClass('col-lg-3 col-md-3 col-sm-6');
});
</script>

Re: Need help

Posted: Mon Jan 26, 2015 6:41 pm
by ramesh_vikaschouhan
please give your live url .

it could be solved using opencart admin settings , CSS .

for help get in touch at skype : Ramesh Chouhan VIT

Re: Need help

Posted: Mon Jan 26, 2015 10:17 pm
by Khal
I am also looking for a solution to this problem. Instead of using the Java script extension, could this code be added to a file? And which file?

Thanks for your help

OC 2.0.1.1

Re: Need help

Posted: Mon Jan 26, 2015 11:04 pm
by viethemes
Khal wrote:I am also looking for a solution to this problem. Instead of using the Java script extension, could this code be added to a file? And which file?

Thanks for your help

OC 2.0.1.1
Yes, you can add this code at the end of file catalog/view/javascript/common.js

Code: Select all

$(document).ready(function () {
$('.col-lg-3.col-md-3.col-sm-6').removeClass('col-lg-3 col-md-3 col-sm-6');
});

Re: Need help

Posted: Mon Jan 26, 2015 11:16 pm
by Khal
Hi

Thanks for getting back to me.

I added the code at the end of the file you specified, but the modules are still displayed as grid view in the left and right columns:
Untitled-1.jpg

Untitled-1.jpg (88.89 KiB) Viewed 1810 times


Re: Need help

Posted: Mon Jan 26, 2015 11:32 pm
by viethemes
Khal wrote:Hi

Thanks for getting back to me.

I added the code at the end of the file you specified, but the modules are still displayed as grid view in the left and right columns:
Untitled-1.jpg
Could you send me your site url via PM, so I can take a look at that?