How To Disable The Popup Feature ?

When we click the add to cart button, popup shows the item was added to bucket, how can i disable that feature ?

Any solutions? I'm interested as well.

Please disable the following line in the app/controllers/frontend/checkout.php file:

fn_set_notification('I', __($product_cnt > 1 ? 'products_added_to_cart' : 'product_added_to_cart'), $msg, 'I');

E.g.

//fn_set_notification('I', __($product_cnt > 1 ? 'products_added_to_cart' : 'product_added_to_cart'), $msg, 'I');

@CS-Cart-Expert:

I know that this is an old post, but it's one of the top answers in Google. Your solution works, but it's against developer guidelines here: https://docs.cs-cart.com/4.4.x/developer_guide/getting_started/guidelines.html

Don’t Change Core Files

Any other solutions?

Please disable the following line in the app/controllers/frontend/checkout.php file:

fn_set_notification('I', __($product_cnt > 1 ? 'products_added_to_cart' : 'product_added_to_cart'), $msg, 'I');

E.g.

//fn_set_notification('I', __($product_cnt > 1 ? 'products_added_to_cart' : 'product_added_to_cart'), $msg, 'I');