Jump to content

Module Nouveaux produits - supprimer le texte [RESOLU]


Recommended Posts

Bonjour à tous,

je cherche a modifier mon module "Nouveaux Produits", afin qu'il n'affiche plus la description du produit, mais simplement une image, avec pourquoi pas le nom du produit mais pas des 4 ou 5 lignes de descriptif qui suivent.

 

J'ai regardé le tpl de ce module, mais je ne suis pas une super douée, et je ne sais pas trop où intervenir dans le fichier ...

 

Voici le code du fichier .tpl, si quelqu'un a un petit conseil ce serait très très gentil !  

 
<!-- MODULE Block new products -->
<div id="new-products_block_right" class="block products_block">
<h4 class="title_block"><a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='New products' mod='blocknewproducts'}">{l s='New products' mod='blocknewproducts'}</a></h4>
<div class="block_content">
{if $new_products !== false}
<ul class="product_images clearfix">
{foreach from=$new_products item='product' name='newProducts'}
{if $smarty.foreach.newProducts.index < 2}
<li{if $smarty.foreach.newProducts.first} class="first"{/if}><a href="{$product.link|escape:'html'}" title="{$product.legend|escape:html:'UTF-8'}"><img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'medium_default')|escape:'html'}" height="{$mediumSize.height}" width="{$mediumSize.width}" alt="{$product.legend|escape:html:'UTF-8'}" /></a></li>
{/if}
{/foreach}
</ul>
<dl class="products">
{foreach from=$new_products item=newproduct name=myLoop}
<dt class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$newproduct.link|escape:'html'}" title="{$newproduct.name|escape:html:'UTF-8'}">{$newproduct.name|strip_tags|escape:html:'UTF-8'}</a></dt>
{if $newproduct.description_short}<dd class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$newproduct.link|escape:'html'}">{$newproduct.description_short|strip_tags:'UTF-8'|truncate:75:'...'}</a><br /><a href="{$newproduct.link}" class="lnk_more">{l s='Read more' mod='blocknewproducts'}</a></dd>{/if}
{/foreach}
</dl>
<p><a href="{$link->getPageLink('new-products')|escape:'html'}" title="{l s='All new products' mod='blocknewproducts'}" class="button_large">» {l s='All new products' mod='blocknewproducts'}</a></p>
{else}
<p>» {l s='Do not allow new products at this time.' mod='blocknewproducts'}</p>
{/if}
</div>
</div>
<!-- /MODULE Block new products -->
 
Edited by Eva Martin (see edit history)
Link to comment
Share on other sites

Bonjour,

 

Supprimez les lignes :

 

{if $newproduct.description_short}<dd class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if}"><a href="{$newproduct.link|escape:'html'}">{$newproduct.description_short|strip_tags:'UTF-8'|truncate:75:'...'}</a><br /><a href="{$newproduct.link}" class="lnk_more">{l s='Read more' mod='blocknewproducts'}</a></dd>{/if}

 

Surcharger votre module pour conserver le fichier natif de Prestashop.

Link to comment
Share on other sites

Surcharger le module signifie que vous allez travailler sur un fichier .tpl qui se trouve dans :

 

/theme/votretheme/modules/blocknewproducts/blocknewproducts.tpl

plutôt que de travailler sur : 

/modules/blocknewproducts/blocknewproducts.tpl

 

Si ces deux fichiers existe, Prestashop ira chercher celui dans votre thème. Ce qui permet de ne pas modifier le .tpl "natif", en cas de mise à jour du module.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...