Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zackkatz/0cd8a279cceb1de2d561016b0cc2a805 to your computer and use it in GitHub Desktop.
Save zackkatz/0cd8a279cceb1de2d561016b0cc2a805 to your computer and use it in GitHub Desktop.
Prevent Entry Approval Notes from displaying on the View
<?php // DO NOT COPY THIS LINE
add_filter( 'gravityview/entry_notes/get_notes', 'gv_remove_entry_approval_notes', 10, 2 );
function gv_remove_entry_approval_notes( $notes, $entry_id ) {
foreach($notes as $key => $note){
if (strpos( $note->value, 'WordPress') !== false){
unset( $notes[ $key] );
}
}
return $notes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment