Description
This action is fired before the checkout button.
Example
function my_prefix_before_checkout_button() {
echo '<p>Hello world! 👋</p>';
}
add_action( 'cartpops_drawer_before_checkout_button', 'my_prefix_before_checkout_button' );
Learn where this hook takes place in the visual hook guide.