Is bit of a odd task and not been asked that question before, could someone possibly look at the code I tried below and see what I done wrong please
I tried the following code in catalog/view/theme/default/template/checkout/cart.tpl but it didn't work
Code: Select all
<?php
if($product['name']==$product['BRC Levy']){
?>
<button type="button" data-toggle="tooltip" title="<?php echo $button_remove; ?>" class="hidden-xs hidden-sm hidden-md" onclick="cart.remove('<?php echo $product['cart_id']; ?>');"><i class="fa fa-times-circle"></i></button>
<?php } else { ?>
<button type="button" data-toggle="tooltip" title="<?php echo $button_remove; ?>" class="btn btn-danger" onclick="cart.remove('<?php echo $product['cart_id']; ?>');"><i class="fa fa-times-circle"></i></button>
<?php } ?>