Skip to content

Instantly share code, notes, and snippets.

@rafaehlers
Created May 8, 2019 19:48
Show Gist options
  • Save rafaehlers/392ae116fd48921c8a91272c3d1da8d5 to your computer and use it in GitHub Desktop.
Save rafaehlers/392ae116fd48921c8a91272c3d1da8d5 to your computer and use it in GitHub Desktop.
Change any GravityView text
<?php // don't copy this line
add_filter( 'gettext', 'gv_modify_text', 20, 3 );
function gv_modify_text( $translated_text, $text, $domain ) {
if ( $translated_text === 'You do not have permission to edit this entry.') {
$translated_text = __( 'You dont!', 'gravityview' );
}
return $translated_text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment