Remove item Thumbnail image Product Price Quantity Subtotal
1-Year Horoscope 1-Year Horoscope $99.00

$99.00

Cart totals

Subtotal $99.00
Total $99.00
/** * Add a custom field (in an order) to the emails */ add_filter( 'woocommerce_email_order_meta_fields', 'custom_woocommerce_email_order_meta_fields', 10, 3 ); function custom_woocommerce_email_order_meta_fields( $fields, $sent_to_admin, $order ) { $fields['hear_about_us'] = array( 'label' => __( 'Date Of Birth' ), 'value' => get_post_meta( $order->id, 'additional_wooccm0', true ), ); return $fields; }
Scroll to Top