You are ready to go ! Just go to the file:
themes/classic/templates/catalog/listing/category.tpl
After the closing div that contains the category name and place this line of code:
{hook h=’categoryListing’}
You will need to hide the default listing:
Go to themes/classic/templates/catalog/listing/product-list.tpl
Open the file : product-list.tpl
Find the line 51 where you have {include file=’catalog/_partials/products.tpl’ listing=$listing}
Comment that code this way : {*include file=’catalog/_partials/products.tpl’ listing=$listing*}
Now we need to deal with the product sorting in the same file product-list.tpl in the line 39, comment this code:
{include file=’catalog/_partials/products-top.tpl’ listing=$listing}
this way : {*include file=’catalog/_partials/products-top.tpl’ listing=$listing*}If you need to show the sorting place this code:

{include file=’catalog/_partials/products-top.tpl’  listing=$listing}
in top of the code {hook h=’categoryListing’} in the file :
themes/classic/templates/catalog/listing/category.tpl

 

Now we need  just  to add a condition  for those who want to show this for  a specific  category.

If  you want to this module  only for  a specific category of  id=5   add this  condition:

{$if  $page_name==’category’  &&   $category->id==5}

{*include file=’catalog/_partials/products.tpl’ listing=$listing*}

{else}

{include file=’catalog/_partials/products.tpl’ listing=$listing}

{/if}

We  comment  only  if the current category has an  id equals to  5  .

NS SubCategory Listing

Facebook Comments Box
0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments