
在woocommerce商店中,为用户提供额外的折扣选项可以有效提升转化率和用户满意度。本教程将引导您实现在购物车页面添加一个复选框,当用户勾选时,购物车总价将应用一个固定金额的折扣;当用户取消勾选时,折扣将被移除。整个过程将通过ajax实现,确保用户体验的流畅性,并保证折扣信息在woocommerce的各个环节(如迷你购物车、结账页、订单详情和邮件)中正确显示。
首先,我们需要在WooCommerce购物车页面总计区域的合适位置添加一个HTML复选框。woocommerce_cart_totals_before_shipping 是一个常用的钩子,用于在运输费用之前插入内容。
// 将以下代码添加到您的主题的 functions.php 文件或自定义插件中
add_action('woocommerce_cart_totals_before_shipping', 'my_custom_discount_checkbox_row');
function my_custom_discount_checkbox_row() {
// 检查折扣是否已应用(从会话中获取),以在页面刷新时保持状态
$discount_applied = WC()->session->get('apply_fixed_discount', false);
?>
<tr class="discount-checkbox-row">
<th><?php esc_html_e('应用折扣', 'your-text-domain'); ?></th>
<td data-title="<?php esc_attr_e('应用折扣', 'your-text-domain'); ?>">
<input type="checkbox" id="apply_fixed_discount" name="apply_fixed_discount" value="1" <?php checked($discount_applied, true); ?>>
<label for="apply_fixed_discount"><?php esc_html_e('勾选以享受固定折扣', 'your-text-domain'); ?></label>
</td>
</tr>
<?php
}这段代码会在购物车总计区域添加一个复选框。我们还通过 WC()-youjiankuohaophpcnsession->get('apply_fixed_discount', false) 检查用户会话中是否已设置了应用折扣的标志,以便在页面刷新时保持复选框的选中状态。
为了实现动态折扣,我们需要使用JavaScript监听复选框的变化,并通过AJAX请求将用户的选择发送到后端。首先,我们需要注册并本地化我们的JavaScript文件。
// 将以下代码添加到您的主题的 functions.php 文件或自定义插件中
add_action('wp_enqueue_scripts', 'enqueue_discount_checkbox_script');
function enqueue_discount_checkbox_script() {
// 仅在购物车和结账页面加载脚本
if (is_cart() || is_checkout()) {
wp_enqueue_script('fixed-discount-script', get_stylesheet_directory_uri() . '/js/fixed-discount.js', array('jquery'), '1.0', true);
// 本地化脚本,传递 AJAX URL 和安全 Nonce
wp_localize_script('fixed-discount-script', 'fixed_discount_vars', array(
'ajax_url' => admin_url('admin-ajax.php'), // WordPress AJAX URL
'fixed_discount_nonce' => wp以上就是在WooCommerce购物车页面添加折扣复选框并动态应用折扣的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号