I use opencart version 1.5.3.1
I tried to change the add to cart button on the product page with out of stock message but without any result.
On the product page (/public_html/catalog/view/theme/mytheme/template/product/product.tpl) I replace the following line:
Code: Select all
<div class="cart"><a onclick="addToCart('<?php echo $product['product_id']; ?>');" class="button addToCart"><span><?php echo $button_cart; ?></span></a></div>
Code: Select all
<?php if ($stock == "In Stock")
{
?>
<div class="cart"><a onclick="addToCart('<?php echo $product['product_id']; ?>');" class="button addToCart"><span><?php echo $button_cart; ?></span></a></div>
<?php }
else
{
?>
<a class="button" style="font-size:16px;">Out of Stock</a>
<?php
}
?>