DIY Layout: Remove the "Go back" link
If you want to remove the "Go back" link from the Single Entry layout in the DIY layout, use the following code:
add_action( 'gravityview/template/before', function() {
remove_action( 'gravityview/template/diy/single/before', array( 'GV\Entry_DIY_Template', 'back_link' ) );
}, 1 );