Show Availability Text On Do Not Track Products

Hi,

i have many products with "Do Not Track" options (dropshipping products). I want show on this products text "availability". How i can insert this modify? I have search in common/product_data.tpl but i can't find the correct string.

Thanks

Change code within the products:product_amount hook in the mentioned file

Change code within the products:product_amount hook in the mentioned file

it's possible have an example?

Please provide us with more details about required modification

i want show on products pages "availability" for products with invetory tracking "do not track"

So use mentioned hook to remove the following condition (or change the file directly (not recommended))

{if $product.tracking != "ProductTracking::DO_NOT_TRACK"|enum}
    ....
{/if}

So use mentioned hook to remove the following condition (or change the file directly (not recommended))

{if $product.tracking != "ProductTracking::DO_NOT_TRACK"|enum}
    ....
{/if}

Perfect, thanks! :grin: