dtg7662 2018-01-31 17:17
浏览 268
已采纳

在WooCommerce中为付费订单添加自定义数据库表中的数据

When the user buy a product, I want to save a series of data in custom tables in database. This data will be the product id, custom fields I have, and some other data.

My idea is that this should be done when the payment of the product has been made correctly, that is to say, at the time of payment.

I wanted you to give me advice, I have created a way but I don't know if it is the right one or if you would recommend any other way.

I've edited the thankyou page, and I have inserted this code:

$order = new WC_Order ($order->get_id ();
$check_payment = $order->payment_complete ();

if ($check_payment) {
    global $wpdb;
    wpdb->insert (/* CODE DATABASE*/);
} 
  • 写回答

1条回答 默认 最新

  • douan9541 2018-01-31 18:06
    关注

    As woocommerce Order-received (thankyou) page can be reloaded, it's not really the good way.

    The correct hook to be used that you can find inside WC_Order payment_complete() method is woocommerce_payment_complete. So your code should be for most payment gateways:

    add_action('woocommerce_payment_complete', 'action_payment_complete', 30, 1 );
    function action_payment_complete( $order_id ){
        global $wpdb;
    
        // Get an instance of the WC_Order object (if needed)
        $order = wc_get_order( $order_id );
    
        // Your database actions code
        wpdb->insert (/* CODE DATABASE*/);
    }
    

    Code goes in function.php file of the active child theme (or active theme).


    For payment methods (CHEQUE HERE) as 'cheque', 'bacs' and 'cod' that needs to be "completed" by shop manager, you will use instead:

    add_action( 'woocommerce_order_status_completed', 'action_order_status_completed', 20, 2 );
    function action_payment_complete( $order_id, $order ){
        // The specific payment methods to be target
        $payment_methods = array('bacs','cheque','cod');
    
        // Only for specific payment methods
        if( ! in_array( $order->get_payment_method(), $payment_methods ) return;
    
        global $wpdb;
    
        // Your database actions code
        wpdb->insert (/* CODE DATABASE*/);
    }
    

    So when order status will change to completed for this specific payment methods, this hook will be triggered…

    You can also use instead woocommerce_order_status_processing if you target Processing order status or woocommerce_order_status_on-hold if you target On Hold order status

    Code goes in function.php file of the active child theme (or active theme).

    This should works.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 LiBeAs的带隙等于0.997eV,计算阴离子的N和P
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法