1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Automatic coupon application at a percentage discount
This commit is contained in:
Ivan Chaplygin 2024-05-08 15:09:39 +03:00
parent 487171224c
commit 00acdcafee

View file

@ -268,12 +268,15 @@ if (!class_exists('WC_Retailcrm_Loyalty')) :
return null;
}
//If a percentage discount, automatically apply a loyalty coupon
if ($loyaltyInfo['loyaltyAccounts'][0]['level']['type'] === 'discount') {
$resultString .= '<div style="background: #05ff13;">' . 'Предоставляется скидка в ' . $lpDiscountSum . $loyaltyInfo['loyaltyAccounts'][0]['loyalty']['currency'] . '</div>';
} else {
$resultString .= '<div style="background: #05ff13;">' . 'Возможно списать ' . $lpDiscountSum . ' бонусов' . '</div>';
$woocommerce->cart->apply_coupon($coupon->get_code());
return $resultString;
}
$resultString .= '<div style="background: #05ff13;">' . 'Возможно списать ' . $lpDiscountSum . ' бонусов' . '</div>';
return $resultString . '<div style="background: #05ff13;">' . 'Your coupon: ' . $coupon->get_code() . '</div>';
}