|
paul@moodandmind.com - 12 April 2008 12:30 PM I’ve found that the easiest solution is to turn off “Comparable on Front End” on all of your attributes under Manage Attributes.
If you do this the compare feature should not be active.
Don’t work for me....
I have version 1.1.2
There is still a “OR ADD TO COMPARE” on productpage
I deactivate the “add to compare” with editing the code in \app\design\frontend\default\default\template\catalog\product\view\addto.phtml but the “OR” is still there. Any ideas to delete it?
It don’t works with editing the file app\design\frontend\default\default\template\catalog\product\view\type\simple.phtml because this is the code in simple.phtml
<?php $_product = $this->getProduct() ?>
<?php if($_product->isSaleable()): ?> <p class="availability"><?php echo $this->__('Availability: In stock.') ?></p> <?php else: ?> <p class="availability"><?php echo $this->__('Availability: Out of stock.') ?></p> <?php endif; ?>
<?php echo $this->getPriceHtml($_product) ?>
|