Rob Emenecker gave instructions for both the results:
Then in .\webassist\plugins\catalog\basic\results.php at line 225:if ($ProductPrice == "0.00") {
echo "Call for Pricing!";
} else {
echo '$' . number_format($ProductPrice,2);
}

and details:
In .\webassist\plugins\catalog\details.php at line 60 changed/added the code to:<?php
if($row_WADAProducts["ProductPrice"] == "0.00") {
echo 'Call for Pricing!';
} else {
echo 'Price: ';
echo '$' . number_format($row_WADAProducts["ProductPrice"], 2);
}
?>

pages in his post.


