I am running oc v 3.0.3.1
Want to fix code so if product price is 0, then display `Call for Price` on both the category page and single product page.
What file(s) should I edit as the ones listed below are not in the installation I have
1. EDIT: system/library/currency.php (or system/helper/currency.php for certain versions)
2. FIND:
Code: Select all
$string = '';
Code: Select all
if ($format && (float)$value == 0) {
return 'Call for Price';
}