WordPress商店正在使用WooCommerce,我有一个小的购买说明,我需要出现在WooCommerce结账上,但只有在购买某个产品时。
我添加了一个自定义消息,现在出现在下单按钮下面。然而,无论推车里有什么,它都会出现。
这是我目前的代码:
add_action( 'woocommerce_after_checkout_form', 'allclean_add_checkout_content', 12 );
function allclean_add_checkout_content() {
echo '<div class="checkoutdisc">Custom message appears here fine.</div>';
}
是否有一个简单的代码,我可以添加在这一行之前,使它只适用于当某一类别的产品是在购物车?
谢啦
在此,我们检查购物车中是否有此特殊类别的产品项。如果条件匹配(在购物车的一个项目中),则显示消息。
下面是代码:
add_action( 'woocommerce_after_checkout_form', 'allclean_add_checkout_content', 12 );
function allclean_add_checkout_content() {
// set your special category name, slug or ID here:
$special_cat = 'special_category';
$bool = false;
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$item = $cart_item['data'];
if ( has_term( $special_cat, 'product_cat', $item->id ) )
$bool = true;
}
// If the special cat is detected in one items of the cart
// It displays the message
if ($bool)
echo '<div class="checkoutdisc">This is Your custom message displayed.</div>';
}
您还可以使用产品ID数组而不是产品类别。。。
在这种情况下,代码将略有不同:
add_action( 'woocommerce_after_checkout_form', 'allclean_add_checkout_content', 12 );
function allclean_add_checkout_content() {
// set your products IDs here:
$product_ids = array( 31, 68, 87, 124);
$bool = false;
foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
$item = $cart_item['data'];
if ( in_array( $item->id, $product_ids ) )
$bool = true;
}
// If the special cat is detected in one items of the cart
// It displays the message
if ($bool)
echo '<div class="checkoutdisc">This is Your custom message displayed.</div>';
}
这段代码可以正常工作。活动子主题(或主题)或任何插件文件中的php文件。
此代码经过测试并有效。
我想你需要检查购物车里的东西。
add_action( 'woocommerce_after_checkout_form', 'allclean_add_checkout_content', 12 );
function allclean_add_checkout_content() {
$cart = WC()->cart;
foreach ( $this->get_cart() as $cart_item_key => $values ) {
$_product = $values['data'];
if ( has_term( 'special-category', 'product_cat', $_product->id ) ){
echo '<div class="checkoutdisc">Your custom message.</div>';
}
}
}