Sale!

Lifetime Horoscope (100 Years)

Original price was: $999.00.Current price is: $299.00.

From the day you were born to a century ahead — all mapped by the stars.

Category:
/** * 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