"Customers who bought this product also purchased" extension, magento 1.6+ compatibility fix

To install Customers who bought this product also purchased extension for magento 1.6+, we need to apple a few fixes.

1st Fix. This will make this extension 1.5+ compatible.


app/code/local/Jain/Bought/etc/config.xml

Remove the following if present:






bought/result




2nd Fix. This will fix the right sidebar not displaying in certain circumstances:


app\code\local\Jain\Bought\Block\Bought.php

change

foreach ($collection as $_index => $_item) {
$sortProdArray[$_index]=$_item;
}

to


$sortProdArray = array();
foreach ($collection as $_index => $_item) {
$sortProdArray[$_index]=$_item;
}

3rd Fix. This is optional. This fix makes sure that this block will only display if there are actual items listed--otherwise this block won't be shown. :


app/design/frontend/default/default/template/bought/sidebar.phtml

Replace all the PHP code on this page with the following:

/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE_AFL.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category design
* @package base_default
* @copyright Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
*/

/**
* Shoping cart sidebar
*
* @see Mage_Checkout_Block_Cart_Sidebar
*/

$title = $this->getTitle();
$le = $this->getBoughtProducts();

/*foreach($le as $_index=>$_item){
echo $_item->getId();
}
exit;*/
$lecount=count($le );

?>
getEnable()){
//echo Mage::getVersion();
//KZN
?>
0): ?>


    $_item) {
    //echo $_index."

    ";
    //$_item=$le[$_index];
    //echo $_item->getStatus();
    ?>

  1. htmlEscape($_item->getName()) ?>
    getPriceHtml($_item) ?>

Tags: magento extensions