【发布时间】:2020-06-27 08:34:02
【问题描述】:
我有一个 WordPress 网站,它使用 PayPal Checkout 插件进行 woocommerce。 https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/
我需要更改 PayPal 项目名称,我在 functions.php 中使用此代码,它适用于普通的 PayPal 插件,但不适用于 PayPal Express 结帐。
add_filter( 'woocommerce_paypal_get_order_item_name', 'change_paypal_item_name', 10, 3 );
function change_paypal_item_name( $item_name, $order, $item ) {
return 'test';
}
有人知道使用 PayPal Express 结账插件更改商品名称的功能吗?
【问题讨论】:
标签: wordpress express woocommerce paypal