woocommerce_after_checkout_registration_form
The WooCommerce Websky woocommerce after checkout registration form hook.
Description
Parameters (1)
- 0. $checkout (unknown)
- The checkout.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'woocommerce_after_checkout_registration_form', $checkout );
- The following example is for adding a hook callback.
- // define the woocommerce_after_checkout_registration_form callback
- function action_woocommerce_after_checkout_registration_form( $checkout ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'woocommerce_after_checkout_registration_form', 'action_woocommerce_after_checkout_registration_form', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'woocommerce_after_checkout_registration_form', 'action_woocommerce_after_checkout_registration_form', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /checkout/form-billing.php
- <?php do_action( 'woocommerce_after_checkout_registration_form', $checkout ); ?>