gray Posted March 21, 2010 Share Posted March 21, 2010 I want a full product description not a truncated one in product_list.tpl in my theme directoryLine 10 says {$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'} I have tried everything I can think of to modify the code, but nothing seems to happen. Any ideas or is there something global or is it just my browser cache. Link to comment Share on other sites More sharing options...
razaro Posted March 21, 2010 Share Posted March 21, 2010 There are two columns in database one description and other description_short.Your code shows short description truncated .This code wil show full description truncated with limit of 360 characters {$product.description|strip_tags:'UTF-8'|truncate:360:'...'} and this with no restriction {$product.description|strip_tags:'UTF-8'} Link to comment Share on other sites More sharing options...
gray Posted March 22, 2010 Author Share Posted March 22, 2010 That works fine.Thanks a lot 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