woocommerce_pos_email_footer
Hook for the woocommerce_email_footer.
Usage
add_action( 'woocommerce_pos_email_footer', 'wp_kama_woocommerce_pos_email_footer_action' );
/**
* Function for `woocommerce_pos_email_footer` action-hook.
*
* @param $email
*
* @return void
*/
function wp_kama_woocommerce_pos_email_footer_action( $email ){
// action...
}
- -
Changelog
| Since 10.0.0 | Introduced. |
Where the hook is called
woocommerce_pos_email_footer
woocommerce/templates/emails/customer-pos-refunded-order.php 133
do_action( 'woocommerce_pos_email_footer', $email );
woocommerce/templates/emails/customer-pos-completed-order.php 122
do_action( 'woocommerce_pos_email_footer', $email );
Where the hook is used in WooCommerce
woocommerce/includes/emails/class-wc-email-customer-pos-completed-order.php 125
add_action( 'woocommerce_pos_email_footer', array( $this, 'email_footer' ) );
woocommerce/includes/emails/class-wc-email-customer-pos-completed-order.php 144
remove_action( 'woocommerce_pos_email_footer', array( $this, 'email_footer' ) );
woocommerce/includes/emails/class-wc-email-customer-pos-refunded-order.php 235
add_action( 'woocommerce_pos_email_footer', array( $this, 'email_footer' ) );
woocommerce/includes/emails/class-wc-email-customer-pos-refunded-order.php 257
remove_action( 'woocommerce_pos_email_footer', array( $this, 'email_footer' ) );