sure
first open /includes/templates/YOUR_TEMPLATE_NAME/templates/tpl_shopping_cart_default.php
add:
PHP Code:
<th scope="col" id="scAvailabilityHeading"><?php echo TABLE_HEADING_AVAILABILITY; ?></th>
after:
PHP Code:
<th scope="col" id="scUpdateQuantity"> </th>
then add:
PHP Code:
<td class="scAvailability">
<?php
if ($product['flagStockCheck'] == '') {
echo '<span class="alertGo bold">' . TEXT_PRODUCTS_QUANTITY . '</span>';
} else {
echo '<span class="alert bold">' . $product['flagStockCheck'] . '</span>';
}
?>
</td>
after:
PHP Code:
<td class="cartQuantityUpdate">
<?php
if ($product['buttonUpdate'] == '') {
echo '' ;
} else {
echo $product['buttonUpdate'];
}
?>
</td>
then create a file called
/includes/languages/english/extra_definitions/YOUR_TEMPLATE_NAME/shopping_cart_extras.php
add
<?php
define('TEXT_PRODUCTS_QUANTITY', 'In Stock');
?>
end result should add a column that shows *** or In Stock
you can change *** to Out of Stock in ADMIN > CONFIGURATION > STOCK
further customization can be done, see example below
Attachment 12320