cwcfp_after_checkout_fields
The cwcfp_after_checkout_fields
action allows you to insert content before the conditional fields on your checkout page.
This can be used to insert an image, or a number of other use cases.
For example:
add_action( 'cwcfp_after_checkout_fields', 'your_custom_function' ); function your_custom_function(){ echo '<img src="http://example.com/img.jpg" alt="" />'; }
This action has no arguments passed to it.