1 回答
TA贡献1877条经验 获得超6个赞
我会覆盖 WooCommerce 上的购物车页面,以将优惠券包装在折叠元素中。
可以通过将文件从模板复制wp-content/plugins/woocommerce/templates/cart/cart.php到wp-content/themes/yourtheme/woocommerce/cart/cart.php.
然后从 WooCommerce v4 中的第 142 行到第 150 行,您可以像这样插入您的代码段:
<?php if ( wc_coupons_enabled() ) { ?>
<small><a class="text-muted" data-toggle="collapse" href="#collapseCartCoupon" role="button" aria-expanded="false" aria-controls="collapseCartCoupon"><?php esc_attr_e( 'Coupon code', 'woocommerce' ); ?></a></small>
<div class="coupon collapse" id="collapseCartCoupon">
<label for="coupon_code"><?php esc_html_e( 'Coupon:', 'woocommerce' ); ?></label> <input type="text" name="coupon_code" class="input-text" id="coupon_code" value="" placeholder="<?php esc_attr_e( 'Coupon code', 'woocommerce' ); ?>" /> <button type="submit" class="button" name="apply_coupon" value="<?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?>"><?php esc_attr_e( 'Apply coupon', 'woocommerce' ); ?></button>
<?php do_action( 'woocommerce_cart_coupon' ); ?>
</div>
<?php } ?>
由于我的主题已经在使用 Bootstrap,collapse该类已经隐藏了整个 div,因此我不必添加您的内联样式。
我确实测试过将它移到新<tr>的桌子底下,优惠券代码仍然有效。我想它只需要在里面<form>...</form>就可以使用。
另请注意模板文件顶部来自 WooCommerce 的警告:
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
- 1 回答
- 0 关注
- 69 浏览
添加回答
举报