Wordpress商店正在使用WooCommerce,我有一个小的购买须知,我需要出现在WooCommerce Checkout ,但仅限于购买某个产品时。
我添加了一条自定义消息,该消息现在显示在“下订单”按钮下方。 然而,无论购物车中有什么东西,它都会出现。
这是我目前的代码:
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>';
}
我是否可以在此行之前添加一个简单的代码,这使得仅在某个类别产品位于购物车中时适用?
由于
答案 0 :(得分:5)
在这里,我们检查购物车中是否有此特殊类别的商品。如果条件匹配(在购物车的其中一个项目中),则会显示消息。
以下是代码:
HKEY_CURRENT_USER\SOFTWARE\*
您还可以使用一系列产品ID 而非产品类别...
在这种情况下,代码会有所不同:
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>';
}
此代码包含活动子主题(或主题)的function.php文件或任何插件文件。
此代码经过测试且有效。
答案 1 :(得分:2)
我认为您需要检查购物车内容。
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>';
}
}
}