layout on Search template in list view

ThemeBurn SupportForumsOpenCart ThemesShoppica OpenCart Themelayout on Search template in list view

This topic has been marked as not resolved.

The description copy is not displaying when you are in the “List View” on the Search template
http://67.20.77.97/index.php?route=product/search&keyword=chair&category_id=0

August 15, 2011 at 7:02 am #610

I made the change that was emailed to me to fix this but now the Manufacturer List drop down displays wrong. It should be 4 columns wide like all the other pages. It was working fine before this change was made. Here is a sample page that displays wrong:
http://67.20.77.97/Gus-Modern
this is how it should display:
http://67.20.77.97/index.php?route=product/shoppica&path=93&man_id=74

not sure why these are different functions anyways…they are the same search/sort just from different places.

August 15, 2011 at 11:19 pm #659

Hi,

The two pages use two different templates.

The Manufacturer list uses product/manufacturer.tpl and the Category/Manufacturer uses product/shoppica_brand_category.tpl. You just need to open the first one and modify it to be like the other listing pages.

Regards,
ThemeBurn team

August 16, 2011 at 2:01 am #667

it is…this is what you sent me previously and is how the code currently is. (I know it sounds crazy but it was working fine and then after that last change was made to display the description copy on the search.tpl it stopped displaying properly) Here is what you had sent previously:

You can easy make the products pages single column. You need however to mod
some templates:

catalog/view/theme/shoppica/template/product/category.tpl
catalog/view/theme/shoppica/template/product/manufacturer.tpl
catalog/view/theme/shoppica/template/product/search.tpl
catalog/view/theme/shoppica/template/product/shoppica_brand_category.tpl
catalog/view/theme/shoppica/template/product/special.tpl

In every template you need to remove these lines of code:

document->shoppica_column_position == “left”) { ?>

document->shoppica_column_position == “right”) { ?>

Then everywhere you have this line:

<div id="category" class="grid_document->shoppica_products_listing == “size_1″): echo “9″; elseif ($this->document->shoppica_products_listing == “size_2″): echo “12″; endif; ?>”>
Should become:

<div id="category" class="grid_document->shoppica_products_listing == “size_1″): echo “12″; elseif ($this->document->shoppica_products_listing == “size_2″): echo “16″; endif; ?>”>

And finally search for:

document->shoppica_products_listing == “size_1″): $listing_cols = 3; elseif ($this->document->shoppica_products_listing == “size_2″): $listing_cols = 4; endif; ?>
and modify to:

document->shoppica_products_listing == “size_1″): $listing_cols = 4; elseif ($this->document->shoppica_products_listing == “size_2″): $listing_cols = 4; endif; ?>

August 16, 2011 at 2:13 am #669

Hi,

In the catalog/view/theme/shoppica/template/product/manufacturer.tpl, just replace this code:

You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!

This should fix the issue.

Best regards,
ThemeBurn team

August 17, 2011 at 11:27 am #763
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.