Restrict payment gateways based on specific product tag in WooCommerce order pay(在WooCommerce订单支付中限制基于特定产品标签的支付网关)
问题描述
我想根据产品标签在WooCommerce Bookings支付页面上显示一个支付网关,该网关位于URL扩展名上,如下所示:
/checkout/order-pay/5759158/?pay_for_order=true&key=wc_order_75uA3d1z1fmCT
例如,如果标记的ID是&q;378&q;,则仅显示&q;PayPal&q;网关并删除其他网关。
我使用的是Restrict payment gateways based on taxonomy terms in WooCommerce checkout答案代码,它允许根据产品标签限制支付网关,但仅限于WooCommerce结账页面。
我还需要在WooCommerce预订付款页面上对其进行限制。
如何在WooCommerce预订支付页面中根据产品标签限制支付网关?
推荐答案
对于订单支付页面,您需要遍历订单项目而不是购物车项目,以检查产品标签术语…要定位订单支付页面,请使用:
if ( is_wc_endpoint_url( 'order-pay' ) ) {
以下代码将禁用除";PayPal";以外的所有付款方式,当订单付款页面(以及结账)中存在属于特定产品标签条款的商品时:
add_filter( 'woocommerce_available_payment_gateways', 'filter_available_payment_gateways' );
function filter_available_payment_gateways( $available_gateways ) {
// Here below your settings
$taxonomy = 'product_tag'; // Targeting WooCommerce product tag terms (or "product_cat" for category terms)
$terms = array('378'); // Here define the terms (can be term names, slugs or ids)
$payment_ids = array('paypal'); // Here define the allowed payment methods ids to keep
$found = false; // Initializing
// 1. For Checkout page
if ( is_checkout() && ! is_wc_endpoint_url() ) {
// Loop through cart items
foreach ( WC()->cart->get_cart() as $item ) {
if ( ! has_term( $terms, $taxonomy, $item['product_id'] ) ) {
$found = true;
break;
}
}
}
// 2. For Order pay
elseif ( is_wc_endpoint_url( 'order-pay' ) ) {
global $wp;
// Get WC_Order Object from the order id
$order = wc_get_order( absint($wp->query_vars['order-pay']) );
// Loop through order items
foreach ( $order->get_items() as $item ) {
if ( ! has_term( $terms, $taxonomy, $item->get_product_id() ) ) {
$found = true;
break;
}
}
}
if ( $found ) {
foreach ( $available_gateways as $payment_id => $available_gateway ) {
if ( ! in_array($payment_id, $payment_ids) ) {
unset($available_gateways[$payment_id]);
}
}
}
return $available_gateways;
}
代码放在活动子主题(或活动主题)的函数.php文件中。它应该可以工作。
参见:Conditional Tags in WooCommerce
相关:Restrict payment gateways based on taxonomy terms in WooCommerce checkout
这篇关于在WooCommerce订单支付中限制基于特定产品标签的支付网关的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在WooCommerce订单支付中限制基于特定产品标签的支付网关
基础教程推荐
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01