Jump to content

Étoile Dans Product-List.tpl


Recommended Posts

<RESOLUT>

 

Bonjour,

 

Je suis sur prestashop 1.5.3.1

 

J'ai réussi à mettre les avis clients (étoile) dans product.tpl et je voudrais mettre c'est même étoile dans product-list.tpl mais je ne trouve pas à faire le lien entre mon code product.tpl et product-list.tpl

 

voilà mon code de product.tpl qui fonctionne :

 

 

{if ($too_early == false AND ($logged OR $allow_guests))}

<p class="align_centergg">

<a id="new_comment_tab_btn" class="open-comment-form" href="#new_comment_form"><img src="../themes/default/images/Donnez-votre-avis.gif"></a>

</p>

 

 

{if $comments|@count <= 1}

<p class="aviscolor">Il y a <span itemprop="reviewCount" style="color:red">{$comments|@count}</span> commentaire sur ce produit.</p>

{/if}

 

{if $comments|@count > 1}

<p class="aviscolor">Il y a <span itemprop="reviewCount" style="color:red">{$comments|@count}</span> commentaires sur ce produit.</p>

{/if}

 

 

{if $comments|@count == 0}

<p class="avis_0">Soyez le premier à donner votre avis !</p>

 

{else}

 

 

<p class="avisetoile">Moyenne de : <span class="hidden" itemprop="ratingValue"></span>

 

{if $averageTotal|round == 1}

<img src="../themes/default/images/etoiles_1.gif">

{/if}

{if $averageTotal|round == 2}

<img src="../themes/default/images/etoiles_2.gif">

{/if}

{if $averageTotal|round == 3}

<img src="../themes/default/images/etoiles_3.gif">

{/if}

{if $averageTotal|round == 4}

<img src="../themes/default/images/etoiles_4.gif">

{/if}

{if $averageTotal|round == 5}

<img src="../themes/default/images/etoiles_5.gif">

{/if}

 

{/if}

 

</p>

 

 

 

 

{/if}

 

et le code que j'ai déjà mis dans product-list.tpl :

 

 

{if $comments|@count == 0}

<p class="avis_0">Soyez le premier à donner votre avis !</p>

{/if}

 

<p class="avisetoile"><span class="hidden" itemprop="ratingValue"></span>

 

 

 

{if $averageTotal|round == 1}

<img src="../themes/default/images/etoiles_1.gif">

{/if}

 

{if $averageTotal|round == 2}

<img src="../themes/default/images/etoiles_2.gif">

{/if}

 

{if $averageTotal|round == 3}

<img src="../themes/default/images/etoiles_3.gif">

{/if}

 

{if $averageTotal|round == 4}

<img src="../themes/default/images/etoiles_4.gif">

{/if}

 

{if $averageTotal|round == 5}

<img src="../themes/default/images/etoiles_5.gif">

{/if}

 

</p>

 

Si quelqu'un peut me venir en aide exemple sur mon site :

http://www.lecoindes...er-20-2013.html

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

  • 1 year later...

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...