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;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动