WordPress – Adding html at the top of WooCommerce edit coupon admin pages
I am struggling to add some simple html to the top of the edit coupon page. Am I using the wrong action hook? add_action( 'woocommerce_edit_coupon_form_before_coupon_data', 'add_html_next_to_coupon_code' ); function add_html_next_coupon_code() { echo '<p> HTML content.</p>'; }