Jump to content

Bouton "plus de détails" ne s'affiche pas


Recommended Posts

Bonjour,

au niveau du résumé de mes fiches produits, le bouton "plus de détails" n'apparaît pas, pourtant il est bien présent dans le code...auriez-vous une piste à me proposer.

Dans product.tpl, j'ai :

 

{if $product->description_short OR $packItems|@count > 0}
 <div id="short_description_block">
  {if $product->description_short}
    <div id="short_description_content" class="rte align_justify">{$product->description_short}</div>
  {/if}
  {if $product->description}
  <p class="buttons_bottom_block"><a href="javascript:{ldelim}{rdelim}" class="button">{l s='More details'}</a></p>
  {/if}
  {if $packItems|@count > 0}
    <h3>{l s='Pack content'}</h3>
    {foreach from=$packItems item=packItem}
	 <div class="pack_content">
	  {$packItem.pack_quantity} x <a href="{$link->getProductLink($packItem.id_product, $packItem.link_rewrite, $packItem.category)}">{$packItem.name|escape:'htmlall':'UTF-8'}</a>
	  <p>{$packItem.description_short}</p>
	 </div>

 

et dans product.js, j'ai

 

//catch the click on the "more infos" button at the top of the page
$('div#short_description_block p a.button').click(function(){
 $('#more_info_tab_more_info').click();
 $.scrollTo( '#more_info_tabs', 1200 );
});

 

pour exemple, voici une de mes fiches produits : http://www.hervepupi...-canin-pdf.html

Merci de votre aide.

Edited by g_roseline (see edit history)
Link to comment
Share on other sites

Bonjour,

 

Normal sur ce thème Prestashop a volontairement caché le bouton.

 

Il faut supprimer cette ligne dans le fichier product.css du thème:

 

 

#pb-left-column #short_description_block .buttons_bottom_block {


display: none;
}

 

ligne : 164

 

 

Vous avez regardez partout sauf au bon endroit :) ...

Un coup de Firebug vous aurez fait gagner du temps.

 

V++

 

Atch

  • Like 1
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...