Created
November 23, 2016 17:01
-
-
Save rafaehlers/dbbf9bd8db6033cc54689fdd31be541d to your computer and use it in GitHub Desktop.
How To Change The 'Entry Updated. Return to Entry' Message
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
add_filter( 'gravityview/edit_entry/success', 'gv_edit_entry_success', 10, 4 ); | |
function gv_edit_entry_success( $entry_updated_message , $view_id, $entry, $back_link ) { | |
$message = 'Product Updated. <a href="'.$back_link .'">Return to product's details page.</a>'; | |
return $message; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment