我试图让Customizr支持我的代码运行,但他们基本上说他们不支持第三方插件,如Woocommerce
我需要根据人们在网站上购买的内容来限制付款类型。 例如,支票付款类型仅适用于购买课程的人。
以下是执行此操作的代码:
<?php
add_filter( 'woocommerce_available_payment_gateways',
'threshold_unset_gateway_by_category' );
function threshold_unset_gateway_by_category( $available_gateways ) {
global $woocommerce;
$unset = false;
$category_ids = array( 22, 21, 25, 20);
foreach ( $woocommerce->cart->get_cart() as $key => $values ) {
$terms = get_the_terms( $values['product_id'], 'product_cat' );
foreach ( $terms as $term ) {
if ( in_array( $term->term_id, $category_ids ) ) {
$unset = true;
break;
}
}
}
if ( $unset == true ) unset( $available_gateways['cheque'] );
return $available_gateways;
}
我已经挖掘了Customizr文件,但我找不到任何冲突。 Wordpress文件可能有点复杂,所以我可能会咆哮错误的树。
答案 0 :(得分:1)
这个答案不是解决您使用Customizr的问题的女佣,我只是以更轻松,更紧凑和灵活的方式重新审视您的代码。
我还在add_filter()
中添加了优先级和参数数量,这有时可以解决奇怪的问题......
所以在这段代码中,我改为使用WP has_term()
条件函数:
add_filter( 'woocommerce_available_payment_gateways', 'categories_unset_cheque_gateway', 99, 1 );
function categories_unset_cheque_gateway( $gateways ){
// BELOW define your categories in the array (can be IDs, slugs or names)
$categories = array( 20, 21, 22, 25 );
// Loop through cart items checking for specific product categories
foreach ( WC()->cart->get_cart() as $cart_item )
if( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ){
unset( $gateways['cheque'] );
break; // Stop the loop
}
return $gateways;
}
代码进入活动子主题(或活动主题)的function.php文件。
经过测试并使用(未经Customizr Pro测试)。
答案 1 :(得分:0)
因此解决方案比我预期的要简单得多。感谢@LoicTheAztec的提示,我利用Loic的代码进行了更好的优化。 修复是检查用户是否为admin
if ( is_admin() ) {
return $available_gateways;
}
然后将其余代码放入else中。 这是完整的解决方案:
add_filter( 'woocommerce_available_payment_gateways', 'categories_unset_cheque_gateway', 99, 1 );
function categories_unset_cheque_gateway( $gateways ){
if (is_admin()){
return $gateways;
}
// BELOW define your categories in the array (can be IDs, slugs or names)
else{
$categories = array( 15 );
// Loop through cart items checking for specific product categories
foreach ( WC()->cart->get_cart() as $cart_item )
if( has_term( $categories, 'product_cat', $cart_item['product_id'] ) ){
unset( $gateways['cheque'] );
break; // Stop the loop
}
return $gateways;
}
}