Hello,
I already get the idea on how i can customize inside, I just customize the Php plugins like this
[
‘title’ => esc_html__( ‘Order ID’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $order->get_order_number(),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Order Status’, ‘dorzki-notifications-to-slack’ ),
‘value’ => ucwords( $order->get_status() ),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Order Total’, ‘dorzki-notifications-to-slack’ ),
‘value’ => html_entity_decode( wp_strip_all_tags( wc_price( $order->get_total() ) ) ),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Paid Via’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $order->get_payment_method_title(),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Shipping Fee’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $order->get_shipping_total(),
‘short’ => false,
],
[
‘title’ => esc_html__( ‘All Order Details’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $order->get_checkout_order_received_url(),
‘short’ => false,
],
[
‘title’ => esc_html__( ‘Customer Name’, ‘dorzki-notifications-to-slack’ ),
‘value’ => trim( $order->billing_first_name . ‘ ‘ . $order->billing_last_name ),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Street’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $billing_address_1 = $order->get_billing_address_1(),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Address’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $billing_address_2 = $order->get_billing_address_2(),
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Email’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $order->billing_email,
‘short’ => true,
],
[
‘title’ => esc_html__( ‘Note’, ‘dorzki-notifications-to-slack’ ),
‘value’ => $customer_note = $order->get_customer_note(),
‘short’ => false,
],
but one last thing is i wan’t to display also the Vendors Shipped or Sold By :
Cheers!
Thank you