Added script for entering a coupon on click
This commit is contained in:
parent
78fd206c0c
commit
e25e383aff
3 changed files with 14 additions and 1 deletions
6
src/assets/js/retailcrm-loyalty-cart.js
Normal file
6
src/assets/js/retailcrm-loyalty-cart.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
function inputLoyaltyCode() {
|
||||
let couponInput = document.getElementById('coupon_code');
|
||||
let couponCode = document.getElementById('input_loyalty_code');
|
||||
|
||||
couponInput.value = couponCode.innerText;
|
||||
}
|
|
@ -747,6 +747,13 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
if ($result) {
|
||||
echo $result;
|
||||
}
|
||||
|
||||
$jsScriptPath = plugins_url() . self::ASSETS_DIR . '/js/retailcrm-loyalty-cart.js';
|
||||
$wpAdminUrl = ['url' => get_admin_url()];
|
||||
|
||||
wp_register_script('retailcrm-loyalty-cart', $jsScriptPath, false, '0.1');
|
||||
wp_enqueue_script('retailcrm-loyalty-cart', $jsScriptPath, '', '', true);
|
||||
wp_localize_script('retailcrm-loyalty-cart', 'AdminUrl', $wpAdminUrl);
|
||||
} catch (Throwable $exception) {
|
||||
writeBaseLogs($exception->getMessage());
|
||||
}
|
||||
|
|
|
@ -254,7 +254,7 @@ if (!class_exists('WC_Retailcrm_Loyalty')) :
|
|||
}
|
||||
|
||||
$resultString .= ' <div style="text-align: left; line-height: 3"><b>' . __('It is possible to write off', 'retailcrm') . ' ' . $lpDiscountSum . ' ' . __('bonuses', 'retailcrm') . '</b></div>';
|
||||
return $resultString. '<div style="text-align: left;"><b>' . __('Use coupon:', 'retailcrm') . ' <u><i>' . $coupon->get_code() . '</i></u></i></b></div>';
|
||||
return $resultString. '<div style="text-align: left;"><b>' . __('Use coupon:', 'retailcrm') . ' <u><i style="cursor: grab" id="input_loyalty_code" onclick="inputLoyaltyCode()">' . $coupon->get_code() . '</i></u></i></b></div>';
|
||||
}
|
||||
|
||||
public function clearLoyaltyCoupon()
|
||||
|
|
Loading…
Add table
Reference in a new issue