Created
September 7, 2015 21:37
-
-
Save NikV/583216444059c6a93ea5 to your computer and use it in GitHub Desktop.
Modify the Entry Delete Link
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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