• hello, I would like to know how to do so that when the order is pending it appears in an image and if it is completed another different image appears.

    thnks

Viewing 1 replies (of 1 total)
  • Thread Starter fakasmile

    (@fakasmile)

    i found this code, but dont work , i putted in function.php.

    add_filter('wf_alter_shipmentlabel_from_address', 'wf_include_order_status', 10, 3);
    
    function wf_include_order_status($from_address, $order, $address) {
    
       $order = ( WC()->version < '2.7.0' ) ? new WC_Order($order_id) : new wf_order($order);
       $from_address .= '<br>'.'Order Status: '.$order->get_status();
       return $from_address;
    }
Viewing 1 replies (of 1 total)

The topic ‘pending order mesasage – complete order message’ is closed to new replies.