Figured this one out myself.
I have removed the notification bar for success messages by simply removing two lines from common.js and my theme's product.tpl:
Change from
To
In common.js you will need to do this for addToCart, addToCompare and addToWishList depending on when you want to not show this notification...
I have removed the notification bar for success messages by simply removing two lines from common.js and my theme's product.tpl:
Change from
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']);
Who is online
Users browsing this forum: No registered users and 23 guests