Hello, I would like to implement a logic in my pages of products when the product price is equal to 0 (== 0) would not show the price, and when it is greater than 0 (> 0) show the price normally ..
Anyone have one suggestion?

|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
Hello, I would like to implement a logic in my pages of products when the product price is equal to 0 (== 0) would not show the price, and when it is greater than 0 (> 0) show the price normally .. Image Attachments
|
|
|
|
|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
anyone can help? |
|
|
|
|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
I need this help, please anyone have one suggestion? |
|
|
|
|
|
|||
|
Moderator
![]() ![]() ![]() ![]() ![]() Messages :
Joined: 2009-02-11 |
Edit /themes/prestashop/product.tpl Look for
<p class="price">
<p class="price" {if $product->getPrice(true, $smarty.const.NULL, 2) == 0}style="display:none"{/if}>
|
|
|
|
|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
Thanks, this work good.. Image Attachments
|
|
|
|
|
|
|||
|
Moderator
![]() ![]() ![]() ![]() ![]() Messages :
Joined: 2009-02-11 |
Instead of |
|
|
|
|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
i try to insert this code but dont have work..
<div> |
|
|
|
|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
i need help please, you can help me? |
|
|
|
|
|
|||
|
Moderator
![]() ![]() ![]() ![]() ![]() Messages :
Joined: 2009-02-11 |
<span class="price" style="display: {if $product.price > 0}inline{else}none{/if};">
|
|
|
|
|
|
|||
|
Apprentice
![]() ![]() Messages :
Joined: 2010-07-18 |
Thanks, this work good.. |
|
|
|