Disable Shipping Price Change Notification

Is it possible to disable notifications in checkout in step when shipping method is chosen? Standard behaviour is that customer gets on screen notification that price was set according to his schipping choice. I do not want this warnings. It is enough when the price is added to the shipping cost in checkout summary. thank you.

Is it possible to disable notifications in checkout in step when shipping method is chosen? Standard behaviour is that customer gets on screen notification that price was set according to his schipping choice. I do not want this warnings. It is enough when the price is added to the shipping cost in checkout summary. thank you.

Hello!

Do you mean the "Shipping rates were changed" notification?

app/functions/fn.cart.php
app/controllers/frontend/checkout.php

In these files you can change the following line of code

fn_set_notification(‘W’, __(‘important’), __(‘text_shipping_rates_changed’));
to
//fn_set_notification(‘W’, __(‘important’), __(‘text_shipping_rates_changed’));

Hello!

Do you mean the "Shipping rates were changed" notification?

yes, it helped. thank you.

You are welcome!