get_billing_first_name() ) ) {
/* translators: %s: Customer first name */
printf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) );
} else {
printf( esc_html__( 'Hi there,', 'woocommerce' ) );
}
?>
| ' : '';
echo wp_kses_post( wpautop( wptexturize( $additional_content ) ) );
echo $email_improvements_enabled ? ' |
' : '';
}
/**
* Show store information - store details are set in the Point of Sale settings.
*/
if ( ! empty( $pos_store_email ) || ! empty( $pos_store_phone_number ) || ! empty( $pos_store_address ) ) {
echo '';
}
/**
* Show refund & returns policy - this is set in the Point of Sale settings.
*/
if ( ! empty( $pos_refund_returns_policy ) ) {
echo '';
echo '
' . esc_html__( 'Refund & Returns Policy', 'woocommerce' ) . '
';
echo wp_kses_post( wpautop( wptexturize( $pos_refund_returns_policy ) ) );
echo '';
}
/**
* Output the email footer
*
* @hooked WC_Email_Customer_POS_*::email_footer() Output the email footer
* @since 10.0.0
*/
do_action( 'woocommerce_pos_email_footer', $email );