您可以在我自己的网站上看到这个。当您将产品添加到特定 SKU 的购物车中时,例如 “成为支持者” 产品时,另一个产品将自动添加到购物车中,并且还可以享受 100%的优惠券折扣。
要查看此操作,请访问 https://businessbloomer.com/bloomer-armada/#le_body_row_9 并添加到购物车 “支持者” 或 “合作伙伴” 包。当然这里还有 PHP 代码片段
PHP 代码片段:如果 SKU 被添加到 WooCommerce 购物车,则将 “产品礼物” 添加到购物车中
/** * @snippet Buy 1, Get Free Product as a Gift - WooCommerce * @sourcecode https://businessbloomer.com/?p=21732 * @author Rodolfo Melogli * @compatible WC 2.6.14, WP 4.7.2, PHP 5.5.9 */ function bbloomer_add_gift_if_sku_added_cart( $passed, $product_id, $quantity ) { global $woocommerce; /* enter array of SKUs that give gift */ $skuswithgift = array('armpar','armsup'); /* enter SKU of product gift */ $giftsku = 'starter'; /* enter name of coupon that gives 100% discount for specific product gift */ $coupon_code = 'xxxyyyzzz'; $product = wc_get_product( $product_id ); if ( $product->get_sku() && in_array( $product->get_sku(), $skuswithgift ) ) { WC()->cart->add_to_cart( wc_get_product_id_by_sku($giftsku) ); wc_add_notice( __( 'Hey, Supporter! As promised, I added #CustomizeWoo Video Lessons for Free - you will be able to access them in a single place (~ My Courses ~) and get premium support.', 'woocommerce' ), 'success' ); $woocommerce->cart->add_discount( $coupon_code ); } return $passed; } add_filter( 'woocommerce_add_to_cart_validation', 'bbloomer_add_gift_if_sku_added_cart', 10, 3 );
可以在哪里添加此代码?
您可以将 PHP 代码片段放置在主题或子主题的 functions.php 文件的底部(如果是 CSS 代码,请添加到主题的 style.css 文件底部),修改之前建议先备份原始文件,若出现错误请先删除此代码。
这段代码是否正常可用?
或者是您有更好的解决方案想要分享?请到薇晓朵 WooCommerce 中文论坛留言告知,我们希望可以帮到更多国内的 WooCommerce 用户也希望您的参与。
需要关于 WooCommerce 的帮助?
请观看我们提供的免费视频教程或到薇晓朵 WooCommerce 中文论坛提问,会有专业技术团队提供相关帮助。