Skip to content
Snippets Groups Projects

Show referral field value below order details

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Tomasz Bednarek
    Edited
    show_referral_field_value_below_order_details.txt 364 B
    add_action('woocommerce_admin_order_data_after_order_details','add_referral_field_below_order_details',10,1);
    
    function add_referral_field_below_order_details($order) {
        echo '<p>&nbsp;</p><p style="font-size:20px"><strong style="color:orange">' . esc_html__('Referral') . '</strong>:<span> '. esc_html($order->get_meta('Referral', true)) . '</span></p>';
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment