Home page images resize automatically on list view

Tagged: 

ThemeBurn SupportForumsOpenCart ThemesShoppica OpenCart ThemeHome page images resize automatically on list view

This topic has been marked as resolved.

This is a little strange issue on my theme.. using 1.5.1.3 OC

I have set the image issues on the home page.. i have set the latest products images size to display 6 in a row, but when i go to any category page and then click the list view and go back to the home page, it automatically shows 4 images in one row.. it increases the size to fit only 4 products.

How do we resolve this issue

November 9, 2011 at 6:45 pm #3396

Hi,

There is a bug indeed in all the product modules (Bestsellers, Latest, Featured and Specials). You need to open every one of these files:

catalog/view/theme/shoppica/template/module/bestseller_content.tpl
catalog/view/theme/shoppica/template/module/featured_content.tpl
catalog/view/theme/shoppica/template/module/latest_content.tpl
catalog/view/theme/shoppica/template/module/special_content.tpl

find this piece of code:

<?php if ($this->document->shoppica_rightColumnEmpty && $this->config->get('shoppica_products_listing') == 'size_2' && $this->document->shoppica_product_listing_type == 'list') { $grid = 3; $listing_cols = 4; } ?>

and replace it with:

<?php if ($this->document->shoppica_rightColumnEmpty && $this->config->get('shoppica_products_listing') == 'size_1' && $this->document->shoppica_product_listing_type == 'list') { $grid = 3; $listing_cols = 4; } ?>

This should do the job.

Best regards,
ThemeBurn team

November 11, 2011 at 1:00 pm #3446

Issues resolved :)

November 11, 2011 at 1:26 pm #3451

Thanks for the help, finding this out :)

Will be fixed in the next release.

Best regards,
ThemeBurn team

November 11, 2011 at 3:48 pm #3457
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.