noesac Posted October 10, 2010 Share Posted October 10, 2010 I've truncated my product titles because there is limited room in the thumbnail, using the following code: 32}...{/if}">{$product.name|substr:0:29|escape:'htmlall':'UTF-8'|trim}{if $product.name|strlen > 29}...{/if} However I noticed the tooltip is truncated too. I would like this to display the full product name so customers don't have to click into the product description if they don't want to. Any ideas on how to do this? Link to comment Share on other sites More sharing options...
rocky Posted October 10, 2010 Share Posted October 10, 2010 Try the following: <a href="{$product.link}" title="{$product.name|substr:0:50|escape:'htmlall':'UTF-8'|trim}{if $product.name|strlen > 50}...{/if}">{$product.name|substr:0:29|escape:'htmlall':'UTF-8'|trim}{if $product.name|strlen > 29}...{/if} This should display the first 29 characters of the product name and the first 50 characters in the tooltip. You can increase that number if necessary. Link to comment Share on other sites More sharing options...
noesac Posted October 10, 2010 Author Share Posted October 10, 2010 Great thanks Rocky! Link to comment Share on other sites More sharing options...
WisdOMbooks Posted October 13, 2010 Share Posted October 13, 2010 So that everybody reading this thread understands what you are talking about(and perhaps can figure out if this could be helpful for him/her)it could be very nice if you could quoteexact folder/file/line of the code in question.Thank you for your kind... precisionAngelo from Kolkata, India Link to comment Share on other sites More sharing options...
rocky Posted October 14, 2010 Share Posted October 14, 2010 It is line 14 of modules/homefeatured/homefeatured.tpl (in PrestaShop v1.3.1), though it's been modified to truncate names by character instead of word like PrestaShop does by default. 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