This seems like it should be easier then the results Im getting. Im not a PHP expert but I've got a product(s) that will be a different price and therefore am trying to set it up so when it's in my catalog it simply says "Call For Price or Call To Order".
I've got my own template file in in my theme and it is working, just not properly. I dont know any other way to do this and I know it's probably not best practice (I'm open to suggestions). I've set it up so when the price is set to "0" a message should be displayed for calling.
<?php if ($this->getPriceHtml($_product) === "$0.00" ) : ?>
<h2>Call To Order</h2>
<?php else: ?>
<?php echo $this->getPriceHtml($_product); ?>
<?php endif; ?>
IT seems to me like this should work but It keeps showing the price of $0.00. What am I missing?