09/07/2016 at 3:18 pm
#390096
Keymaster
@ dominic
You hook into the cn_form_edit_entry_before
action to display any custom instructions. Here’s an example:
add_action( 'cn_form_edit_entry_before', 'cn_form_before_message' );
function cn_form_before_message() {
?>
<p>My Message Here!</p>
<?php
}
Hope that helps!