List Price = 0

Hello,

Is there any possibility that if i have the "list price" price on a product 0 but the price of that product is for example 2 to hide the price?? and show the product without price??

I am importing the prices from my financial database, since i can't change the price in my finance program and i don't want to change the price manually because there are to many products, i was hoping there would be a modification that if the list price is 0 the price will also be 0.

Any suggestions?

Thanks in advance

Bee more specific

Make test

Sure LIST PRICE can be ZERO and PRICE to be ...ex "98"

But PRICE can`t be ZERO and LIST PRICE to be "98"

Just export and import csv prices

I write about this problem that make my work hard to :(

If we don`t understand you ..please write us again with examples

Bee more specific

Make test

Sure LIST PRICE can be ZERO and PRICE to be ...ex "98"

But PRICE can`t be ZERO and LIST PRICE to be "98"

Just export and import csv prices

I write about this problem that make my work hard to :(

If we don`t understand you ..please write us again with examples

I have made tests:

When List Price is 0 The price is "98" the product gets the price 98 for sale (i don't won't to get the 98 as price)

When List Price is 98 and the price is "0" the product gets no price

I want that if the "List Price" is 0 automatically the "price" to become 0 too and to not take in consideration the price value value.

How are you importing the data?

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

Use products:prices_block hook in this file to add condition by price

{if $product.list_price > 0}
    .....
{/if}

I have an addon ... A developer make it for me... for the same problem

Addon Create a cron jobs that sincronize LIST PRICE with PRICE every 3 minutes

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

Use products:prices_block hook in this file to add condition by price

{if $product.list_price > 0}
    .....
{/if}

Hello,

Should i add the condition in more than 1 rows in products:prices_block hook ?? It will be very helpful if you could give me any suggestions.

Thanks in advance