douping1993 2017-02-23 19:16
浏览 46
已采纳

将自定义args添加到Paypal Woocommerce

I need to add custom args to PayPal paying link.

The PHP function looks like this:

$paypal_args = apply_filters( 'woocommerce_paypal_args', $paypal_args );
add_filter( 'woocommerce_paypal_args' , 'change_paypal_args' );

function change_paypal_args( $paypal_args ) {
  global $wp;
  global $woocommerce;
  $order = wc_get_order( $order_id );

  $paypal_args['invoice'] = 'spi432';
  $paypal_args['txn_type'] = 'cart';
  $paypal_args['payment_date'] = $order->order_date;

    return $paypal_args;
}

I added txn_type and invoice as arguments to the link. But payment_date is not shown.

What may be the problem? Also, how can I display email of the customer?

  • 写回答

1条回答 默认 最新

  • dongwei5740 2017-02-23 21:19
    关注

    If you enabled WP_DEBUG you would probably see that $order_id is undefined, and therefore $order is not an order object, so $order->order_date is likely a fatal error. Try passing the order as the second parameter instead.

    add_filter( 'woocommerce_paypal_args' , 'so_42424283_change_paypal_args', 10, 2 );
    
    function so_42424283_change_paypal_args( $paypal_args, $order ) {
    
        $paypal_args['invoice'] = 'spi432';
        $paypal_args['txn_type'] = 'cart';
    
        // WC 2.6+
        $paypal_args['payment_date'] = $order->order_date;
    
        // WC 2.7
        //$paypal_args['payment_date'] = $order->get_date_created();
    
        return $paypal_args;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 导入文件到网吧的电脑并且在重启之后不会被恢复
  • ¥15 (希望可以解决问题)ma和mb文件无法正常打开,打开后是空白,但是有正常内存占用,但可以在打开Maya应用程序后打开场景ma和mb格式。
  • ¥15 绘制多分类任务的roc曲线时只画出了一类的roc,其它的auc显示为nan
  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?