kotkotan Posted August 14, 2013 Share Posted August 14, 2013 Hello, can sombody help me to do something like this: I have many features for each product, i want to enter them to short description, i have about 500 items, and it hard to change by hand. If it possible to change product-list.tpl to enter teatures instead of short description? or maybe somebody have some module or know ho to do when mouse on short description there are showing features? or how to ExPort description, features...etc via Manager SQL? Link to comment Share on other sites More sharing options...
bellini13 Posted August 14, 2013 Share Posted August 14, 2013 you want to show the features on the category pages (aka product list?). Or are you wanting to make this change on the product page? Link to comment Share on other sites More sharing options...
kotkotan Posted August 14, 2013 Author Share Posted August 14, 2013 you want to show the features on the category pages (aka product list?). Or are you wanting to make this change on the product page? on category page Link to comment Share on other sites More sharing options...
bellini13 Posted August 14, 2013 Share Posted August 14, 2013 this is the code from the product.tpl that displays the features information, you could try to copy that code into the product-list.tpl and restyle it as you need {if isset($features) && $features} <!-- product's features --> <ul id="idTab2" class="bullet"> {foreach from=$features item=feature} {if isset($feature.value)} <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} </ul> {/if} If the features do not show up, that might be because the category controller does not load the features. In that event, you would have to override the controller to load the product feature information. Link to comment Share on other sites More sharing options...
kotkotan Posted August 14, 2013 Author Share Posted August 14, 2013 it is good way to resolve this case, but i don't know in where in product-list.tpl copy this code fromproduct.tpl Link to comment Share on other sites More sharing options...
kotkotan Posted September 4, 2013 Author Share Posted September 4, 2013 can anybody help me in this case? 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