Reputation: 547
So when a downloadable product price is set to 0, the price is not showing on the product page. Where´s an example http://piccystock.com/seagull-eating-bread.html
would like to display 0€ just as the other prices
Upvotes: 1
Views: 281
Reputation: 1734
Try this
/app/design/frontend/base/default/template/downloadable/catalog/product/links.phtml:
89 optionsPrice.displayZeroPrice = false;
to optionsPrice.displayZeroPrice = true;
Upvotes: 2