Noptin_WooCommerce::add_checkbox_after_email_field( $field, $key )
Adds the checkbox after an email field.
Return Return
(bool)
Source Source
File: includes/integrations/class-noptin-woocommerce.php
public function add_checkbox_after_email_field( $field, $key ) { if ( $key !== 'billing_email' ) { return $field; } return $this->append_checkbox( $field ); }
Expand full source code Collapse full source code View on GitHub