This commit is contained in:
Abhishek Kathuria 2022-07-23 17:17:10 +05:30
parent 5d3f6745a4
commit f9f7b37933
2 changed files with 3 additions and 6 deletions

View File

@ -58,11 +58,8 @@ class OnepageController extends Controller
}
$cart = Cart::getCart();
if (
$cart->applied_cart_rule_ids != ""
|| $cart->coupon_code == ""
) {
if ( $cart->applied_cart_rule_ids != "" ) {
session()->flash('success', trans('shop::app.checkout.cart.rule-applied'));
}

View File

@ -543,7 +543,7 @@ return [
'check-billing-address' => 'Please check billing address.',
'specify-shipping-method' => 'Please specify shipping method.',
'specify-payment-method' => 'Please specify payment method.',
'rule-applied' => 'Cart or Catalog rule applied',
'rule-applied' => 'Cart rule applied',
],
'onepage' => [