1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Added script for entering a coupon on click

This commit is contained in:
Ivan Chaplygin 2024-09-11 16:22:18 +03:00
parent 78fd206c0c
commit e25e383aff
3 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,6 @@
function inputLoyaltyCode() {
let couponInput = document.getElementById('coupon_code');
let couponCode = document.getElementById('input_loyalty_code');
couponInput.value = couponCode.innerText;
}

View file

@ -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());
}

View file

@ -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()