Remove Shipping Rates Were Changed Popup

Does anyone have any idea how to remove the “Shipping Rates Were Changed” popup on the checkout page in 4.2.3?



Thank you

please check “app/controllers/frontend/checkout.php” and comment out this line:

fn_set_notification('W', __('important'), __('text_shipping_rates_changed'));



p.s. this line occurs twice in this file so both occurs should be commented out

Thanks for your reply. However, I tried as you suggested and an item would no longer be placed in the shopping cart. I then removed the “comment out” tags I had applied ( ) and the shopping cart popup worked again as usual. Not sure if I did something wrong…

in PHP you should comment out by this - “//”, for example:

fn_set_notification('W', __('important'), __('text_shipping_rates_changed'));

should be replaced with:

//fn_set_notification('W', __('important'), __('text_shipping_rates_changed'));

Thank you Damir! I figured it was something I was doing wrong.

welcome, philr :-)

in PHP you should comment out by this - "//", for example:

fn_set_notification('W', __('important'), __('text_shipping_rates_changed'));
should be replaced with:
//fn_set_notification('W', __('important'), __('text_shipping_rates_changed'));

I've tried this on both v4.24 and v4.34, and "Shipping Rates Changed" popup still shown on checkout page.

Any ideas how to disable it?

Thanks.

I've tried this on both v4.24 and v4.34, and "Shipping Rates Changed" popup still shown on checkout page.

Any ideas how to disable it?

Thanks.

We have checked this modification and it works in CS-Cart 4.3.4. Please try clearing your browser cache:

http://www.wikihow.com/Clear-Your-Browser%27s-Cache

Try to comment out the same line in the app/functions/fn.cart.php file