Skip to content

Instantly share code, notes, and snippets.

@spivurno
Created November 2, 2015 14:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/d617ce30b47d8a8bc8a8 to your computer and use it in GitHub Desktop.
Save spivurno/d617ce30b47d8a8bc8a8 to your computer and use it in GitHub Desktop.
Gravity Forms // Hooks // gform_print_entry_content
<?php
// remove default GF entry content function
remove_action( 'gform_print_entry_content', 'gform_default_entry_content', 10 );
// bind our custom entry content function
add_action( 'gform_print_entry_content', 'my_print_entry_content', 10, 3 );
function my_print_entry_content( $form, $entry, $entry_ids ) {
GFEntryDetail::lead_detail_grid( $form, $entry );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment