Policies
Guidelines
- Awards, Grants, and Scholarships
- Local/State/Regional Chapters Formation
- Advisory Council Formation
}
function wpf_dev_display_submit_after( $form_data ) {
// Only run on my form with ID = 2557
if ( absint( $form_data[ 'id' ] ) !== 2557 ) {
return;
}
// Display a link to a YouTube video after the submit button.
_e( '', 'plugin-domain' );
}
add_action( 'wpforms_display_submit_after', 'wpf_dev_display_submit_after', 10, 1 );