• Resolved Tommy

    (@tommyconner96)


    Hello. I am using the premium version of this plugin. I am hoping to add the pickup time and date as line items on the receipt perhaps with a custom hook on the checkout page. We are using OliverPOS, a POS plugin for woocommerce and I would like the times to show on the receipt.

    I found this page on your docs. I believe that could be useful for what I am trying to do, but I’m a bit lost as to where to go from here.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author coderockz

    (@shoroar)

    Hello @tommyconner96

    Please email us using support page from our website to get PRO version support.

    Thank you.

    $order_id = “2500”;
    if(metadata_exists(‘post’, $order_id, ‘delivery_date’) && get_post_meta($order_id, ‘delivery_date’, true) !=””) {
    $delivery_date = get_post_meta( $order_id, ‘delivery_date’, true );
    }

    $html .= “. $delivery_date” ;

    im usig so that code.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pickup time/date as line items on order’ is closed to new replies.