Jump to content

Masquer une information - Hide information


MAB974

Recommended Posts

Bonjour et désolé de ne pas savoir m'exprimer en anglais (je mettrai la traduction google juste ensuite),

Je souhaite enlever l'affichage du poids dans les spécifications d'un produit. Pourriez vous m'aider svp ? Merci.

Hello and sorry to not know how to express myself in English (I'll put the Google translation right next),

I want to remove the display of weight in the specifications of a product. Could you help me please ? Thank you.

Link to comment
Share on other sites

Welcome MAB974! Glad to see that you have arrived at the forums.

The template content.product.php, find programming code similar to:

                  {if $PRODUCT.product_weight > 0}
                  <tr>
                     <td>{$LANG.common.weight}</td>
                     <td>{$PRODUCT.product_weight}{$CONFIG.product_weight_unit|lower}</td>
                  </tr>
                  {/if}

Change to:

                  {if false && $PRODUCT.product_weight > 0}
                  <tr>
                     <td>{$LANG.common.weight}</td>
                     <td>{$PRODUCT.product_weight}{$CONFIG.product_weight_unit|lower}</td>
                  </tr>
                  {/if}

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...