SpaceJump Posted May 27, 2014 Share Posted May 27, 2014 The product names on the product list are abbreviated (see screenshot): How can I make Presta Shop show the complete product name? I googled and found some methods that are supposed to fix this. However it doesn't work for me. What I have done is changing the truncate value in the product-list.tpl and homefeautured.tpl. Also force compile is enabled. But nothing changes on the shop no matter what value I enter for truncate. Any idea? Thanks in advance Link to comment Share on other sites More sharing options...
vekia Posted May 27, 2014 Share Posted May 27, 2014 open product-list.tpl file and remove |truncate modifier from: {$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'} code after changes: {$product.name|escape:'htmlall':'UTF-8'} Link to comment Share on other sites More sharing options...
SpaceJump Posted May 27, 2014 Author Share Posted May 27, 2014 Did that, but as before there's no change at all in the front end. Link to comment Share on other sites More sharing options...
vekia Posted May 27, 2014 Share Posted May 27, 2014 its probably due to the caching after changes in .tpl files make sure that: adv. parameters > performance 1) force compile is turned on 2) cache is disabled Link to comment Share on other sites More sharing options...
SpaceJump Posted May 27, 2014 Author Share Posted May 27, 2014 Force compile is turned on. Do you mean the cache option below the force compile setting? That is turned off. Still no changes on the front end. Link to comment Share on other sites More sharing options...
vekia Posted May 27, 2014 Share Posted May 27, 2014 can you show contents of your file? in addition, you use custom theme? or it's default one? Link to comment Share on other sites More sharing options...
SpaceJump Posted May 27, 2014 Author Share Posted May 27, 2014 Yes, I'm using the default template. Here's my product-list.tpl from themes\default: {* * 2007-2013 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {if isset($products)} <!-- Products list --> <ul id="product_list" class="clear"> {foreach from=$products item=product name=products} <li class="ajax_block_product {if $smarty.foreach.products.first}first_item{elseif $smarty.foreach.products.last}last_item{/if} {if $smarty.foreach.products.index % 2}alternate_item{else}item{/if} clearfix"> <div class="left_block"> {if isset($comparator_max_item) && $comparator_max_item} <p class="compare"> <input type="checkbox" class="comparator" id="comparator_item_{$product.id_product}" value="comparator_item_{$product.id_product}" {if isset($compareProducts) && in_array($product.id_product, $compareProducts)}checked="checked"{/if} /> <label for="comparator_item_{$product.id_product}">{l s='Select to compare'}</label> </p> {/if} </div> <div class="center_block"> <a href="{$product.link|escape:'htmlall':'UTF-8'}" class="product_img_link" title="{$product.name|escape:'htmlall':'UTF-8'}"> <img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" {if isset($homeSize)} width="{$homeSize.width}" height="{$homeSize.height}"{/if} /> {if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if} </a> <h3><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8}</a></h3> <p class="product_desc"><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}" >{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}</a></p> </div> <div class="right_block"> {if isset($product.on_sale) && $product.on_sale && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<span class="on_sale">{l s='On sale!'}</span> {elseif isset($product.reduction) && $product.reduction && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<span class="discount">{l s='Reduced price!'}</span>{/if} {if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} <div class="content_price"> {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span><br />{/if} {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)}<span class="availability">{if ($product.allow_oosp || $product.quantity > 0)}{l s='Available'}{elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)}{l s='Product available with different options'}{else}{l s='Out of stock'}{/if}</span>{/if} </div> {if isset($product.online_only) && $product.online_only}<span class="online_only">{l s='Online only'}</span>{/if} {/if} {if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE} {if ($product.allow_oosp || $product.quantity > 0)} {if isset($static_token)} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}&token={$static_token}", false)}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a> {else} <a class="button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&id_product={$product.id_product|intval}", false)}" title="{l s='Add to cart'}"><span></span>{l s='Add to cart'}</a> {/if} {else} <span class="exclusive"><span></span>{l s='Add to cart'}</span><br /> {/if} {/if} <a class="button lnk_view" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='View'}">{l s='View'}</a> </div> </li> {/foreach} </ul> <!-- /Products list --> {/if} Link to comment Share on other sites More sharing options...
vekia Posted May 28, 2014 Share Posted May 28, 2014 {$product.name|escape:'htmlall':'UTF-8} "UTF-8" param is unclosed, missed ' Link to comment Share on other sites More sharing options...
SpaceJump Posted May 28, 2014 Author Share Posted May 28, 2014 (edited) I changed that, but still no change on the front end. Really strange. For the record: It's the product-list.tpl file in the themes\default folder, right? Edited May 28, 2014 by SpaceJump (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted May 28, 2014 Share Posted May 28, 2014 if you use default theme - yes, that's correct. Link to comment Share on other sites More sharing options...
SpaceJump Posted May 28, 2014 Author Share Posted May 28, 2014 Ok, so what could be the problem? Link to comment Share on other sites More sharing options...
vekia Posted May 28, 2014 Share Posted May 28, 2014 in fact, you made an error in code (missed ' after UTF-8) - with this kind of error in code, page should be blank instead of this - you still see old version it means that somehow your website still shows old version, this can be related to caching - you said that you recompiled theme and removed caching, so in this case without inspection it's hard to say whats going on there Link to comment Share on other sites More sharing options...
SpaceJump Posted May 28, 2014 Author Share Posted May 28, 2014 Is there a way to manually remove the cache? Link to comment Share on other sites More sharing options...
vekia Posted May 28, 2014 Share Posted May 28, 2014 what prestashop version you use? Link to comment Share on other sites More sharing options...
SpaceJump Posted May 28, 2014 Author Share Posted May 28, 2014 I use version 1.5.4.1. Link to comment Share on other sites More sharing options...
vekia Posted May 28, 2014 Share Posted May 28, 2014 Clear Cache in Prestashop admin panel 1. Open Prestashop admin panel and go to Advanced Parameters > Performance 2. Set Force compile to Yes and save changes. 3. Go to your front-office and refresh the store page. Clear cache manuallyFor manual cache clear you need to access your Prestashop installation directory and delete the content of the following folders: cache/smarty/compile cache/smarty/cache img/tmp Delete all the files in the folders, except of index.php. Reload your website in browser to take a look at the changes you have made. That’s it! You should see the changes you made after cache is cleared. Link to comment Share on other sites More sharing options...
SpaceJump Posted June 1, 2014 Author Share Posted June 1, 2014 Deleting the cache didn't make any difference. Now comes the real strange part: I deleted the product-list.tpl from themes\default and the page still shows, even after CTRL+F5. Link to comment Share on other sites More sharing options...
vekia Posted June 1, 2014 Share Posted June 1, 2014 perhaps it's caching not related to prestasho engine, but it's a server-side caching system. Link to comment Share on other sites More sharing options...
SpaceJump Posted June 1, 2014 Author Share Posted June 1, 2014 But I was able to make changes to other .tpl files before, where changes were visible. Are you sure it's the right .tpl in the right folder? 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