Zero Price Action - Need To Not Display Price

Is there a way to not show the price at all, if the Quantity is ZERO?

There’s a setting to hide products that are not in stock. would be some custom work to show product but hide price in that case.

design/themes/THEME/templates/common/product_data.tpl

use products:prices_block hook to hide price if $product_amount <= 0

design/themes/THEME/templates/common/product_data.tpl

use products:prices_block hook to hide price if $product_amount <= 0

Hi

Can be more specific ?

Thanks for help

                {if $product_amount <= 0 || $hide_price_values}{/if}

this don`t work

What doesn't work? Your statement does nothing so why are you expecting it to do something. Your IF block is empty.

If you don't understand hooks and aren't willing to research how to use them, then you should hire a developer who does.

We can certainly help, but we expect you to have the basics under your belt.

                {if $product_amount <= 0 || $hide_price_values}{/if}

this don`t work

Please clarify what and where did you do?