-
- Boatmagic

-
Total Posts: 91
Joined: 2010-08-14
|
Here is the simplest way I’ve found so far.
In file /mytheme/default/template/catalog/product/list.phtml
Comment this out
<!--<?php if ($this->helper('wishlist')->isAllow()) : ?> <li><a href="<?php echo $this->helper('wishlist')->getAddUrl($_product) ?>" class="link-wishlist"><?php echo $this->__('Add to Wishlist') ?></a></li> <?php endif; ?> <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?> <li><span class="separator">|</span> <a href="<?php echo $_compareUrl ?>" class="link-compare"><?php echo $this->__('Add to Compare') ?></a></li> <?php endif; ?>-->
And, comment this code out in mytheme/default/template/catalog/product/compare/sidebar.phtml
<!--<?php $_helper = $this->helper('catalog/product_compare'); $_items = $_helper->getItemCount() > 0 ? $_helper->getItemCollection() : null; ?> <div class="block block-list block-compare"> <div class="block-title"> <strong><span><?php echo $this->__('Compare Products') ?> <?php if($_helper->getItemCount() > 0): ?> <small><?php echo $this->__('(%d)', $_helper->getItemCount()) ?></small> <?php endif; ?> </span></strong> </div> <div class="block-content"> <?php if($_helper->getItemCount() > 0): ?> <ol id="compare-items"> <?php foreach($_items as $_index => $_item): ?> <li class="item"> <input type="hidden" class="compare-item-id" value="<?php echo $_item->getId() ?>" /> <a href="<?php echo $_helper->getRemoveUrl($_item) ?>" title="<?php echo $this->__('Remove This Item') ?>" class="btn-remove" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove this item from the compare products?') ?>');"><?php echo $this->__('Remove This Item') ?></a> <p class="product-name"><a href="<?php echo $this->getProductUrl($_item) ?>"><?php echo $this->helper('catalog/output')->productAttribute($_item, $_item->getName(), 'name') ?></a></p> </li> <?php endforeach; ?> </ol> <script type="text/javascript">decorateList('compare-items')</script> <div class="actions"> <a href="<?php echo $_helper->getClearListUrl() ?>" onclick="return confirm('<?php echo $this->__('Are you sure you would like to remove all products from your comparison?') ?>');"><?php echo $this->__('Clear All') ?></a> <button type="button" title="<?php echo $this->__('Compare') ?>" class="button" onclick="popWin('<?php echo $_helper->getListUrl() ?>','compare','top:0,left:0,width=820,height=600,resizable=yes,scrollbars=yes')"><span><span><?php echo $this->__('Compare') ?></span></span></button> </div> <?php else: ?> <p class="empty"><?php echo $this->__('You have no items to compare.') ?></p> <?php endif; ?> </div> </div>-->
|