Papaya Posted June 8, 2010 Share Posted June 8, 2010 Hi,I would like to ensure that, once entered in the category "SHOES" I show the products in pairs.While entering the category "SOCKS" I want to show products four to four.Can I connect the two pages to two different productlist.tpl or php?Thank you. Link to comment Share on other sites More sharing options...
bartman Posted June 8, 2010 Share Posted June 8, 2010 make a copy of productslist.tpl and rename shoesproductlist.tpl, make the alterations you need in file and reupload, repeat but rename the file socksproductlist.tplopen categorys.tpland find the include for productlist.tpldelete this line and add the following {if $category->id_category == 3} {include file=$tpl_dir./shoesproduct-list.tpl products=$products} {elseif $category->id_category == 2} {include file=$tpl_dir./socksproduct-list.tpl products=$products} {else} {include file=$tpl_dir./product-list.tpl products=$products} {/if} obiviously you need to find the correct category id for the socks and shoes categorys and change the $category->id_category == 3to the right digitsregardsChris Link to comment Share on other sites More sharing options...
Papaya Posted June 8, 2010 Author Share Posted June 8, 2010 Thank you Chris!!It works!Thank you sooo much! make a copy of productslist.tpl and rename shoesproductlist.tpl, make the alterations you need in file and reupload, repeat but rename the file socksproductlist.tplopen categorys.tpland find the include for productlist.tpldelete this line and add the following{if $category->id_category == 3} {include file=$tpl_dir./shoesproduct-list.tpl products=$products} {elseif $category->id_category == 2} {include file=$tpl_dir./socksproduct-list.tpl products=$products} {else} {include file=$tpl_dir./product-list.tpl products=$products} {/if} obiviously you need to find the correct category id for the socks and shoes categorys and change the $category->id_category == 3to the right digitsregardsChris Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now