I i installed this mod, but whether it was me or the mod i found that the product image was being displayed twice and so was the product title link.
I have fixed this by editing the following code in tpl_shopping_cart_default.php around line 85.
PHP Code:
//================================Start of Edit_Cart mod Justin =================================================================
<a href="<?php echo $product['linkProductsName']; ?>"><span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></span></a>
//===============================================================================================================================
<a href="<?php echo $product['linkProductsName']; ?>"><span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle">
<?php echo $product['productsName'];
if(!empty($product['attributes'])) {
echo '<br />[click to edit]';
}
echo '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></span></a>
//================================End Edit_Cart mod Justin =================================================================
That is the code according to the mod, but i changed to the following and now things work fine:
PHP Code:
<a href="<?php echo $product['linkProductsName']; ?>"><span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></span></a>
<a href="<?php echo $product['linkProductsName']; ?>"><span id="cartProdTitle">
<?php
if(!empty($product['attributes'])) {
echo '<br />[click to edit]';
}
echo '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></span></a>
Justin if you still read this it maybe worth modifying your files with this edit if you wish to.
Bookmarks