Skip to content

Instantly share code, notes, and snippets.

@NikV
Created September 7, 2015 21:37
Show Gist options
  • Save NikV/583216444059c6a93ea5 to your computer and use it in GitHub Desktop.
Save NikV/583216444059c6a93ea5 to your computer and use it in GitHub Desktop.
Modify the Entry Delete Link
function modify_gform_delete_entry_link() {
global $lead;
return '<a data-wp-lists="delete:gf_entry_list:lead_row_' . esc_attr( $lead['id'] ) . '::status=delete&entry=' . esc_attr( $lead['id'] ) . '" title="' . esc_attr__( 'Delete this entry permanently', 'gravityforms' ) . '" href="' . wp_nonce_url( '?page=gf_entries', 'gf_delete_entry' ) . '">' . esc_html__( 'Delete', 'gravityforms' ) . '</a>';
}
add_filter('gform_delete_entry_link', 'modify_gform_delete_entry_link');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment