• Resolved janbrokes

    (@janbrokes)


    Hello, can somebody help creating custom WC order meta?

    It should create automatically on new order.
    Meta name Deposit, value should be counted order total value divided by 2 (50%)

    thank you for any ideas

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there,

    Hello, can somebody help creating custom WC order meta?

    It should create automatically on new order.
    Meta name Deposit, value should be counted order total value divided by 2 (50%)

    We’re unable to assist with customization’s, but there are plenty of private developers that should know exactly how to implement something like you’re wanting.

    We highly recommend contacting one of the services on our Customization’s page.

    Let me know if you have any further questions!

    Thank you,
    Joey

    Target the save_post_shop_order hook and write the custom PHP snippet there. Small example:

    add_action( 'save_post_shop_order', 'paulc_add_post_meta' );
    function paulc_add_post_meta( $post_id ) {
           //* $post_id is your order ID
          //* Write your code here
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Order post meta’ is closed to new replies.