How to remove the notification bar?
Posted: Wed Jun 08, 2011 5:20 am
Is there an easy way to remove the notification bar from the store front that is showing each time the customer e.g. adds an item to her shopping cart?
OpenCart Community Forum - Discuss shopping cart and e-commerce solutions.
https://forum.opencart.com/
Code: Select all
if (json['success']) {
$('#notification').html('<div class="attention" style="display: none;">' + json['success'] + '<img src="catalog/view/theme/default/image/close.png" alt="" class="close" /></div>');
$('.attention').fadeIn('slow');
$('#cart_total').html(json['total']);
Code: Select all
if (json['success']) {
$('#cart_total').html(json['total']);