• I need to change the transaction id once the order has been made (l.1496)

    $order_id = $wpdb->insert_id;
    $this->generate_order_code($order_id);

    I created a “transaction id” variable that is used once the client fills in his personal informations (l. 1162).

    global $transact_id;
    $transact_id= md5(uniqid(rand(), true));

    Why $transact_id content is not visible/used for the checkout ?

    Thanks for your help

    • This topic was modified 6 years, 10 months ago by nguafogu78.
  • The topic ‘Replacing transaction id’ is closed to new replies.