mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
5 lines
249 B
Text
5 lines
249 B
Text
add_action( 'gform_entry_detail_content_before', function ( $form, $entry ) {
|
|
$use_choice_text = false;
|
|
$use_admin_label = false;
|
|
gform_delete_meta( $entry['id'], "gform_product_info_{$use_choice_text}_{$use_admin_label}" );
|
|
}, 10, 2 );
|