Created
July 4, 2018 17:39
-
-
Save zackkatz/97c6159782cc26344851803e31399acc to your computer and use it in GitHub Desktop.
GravityView DIY Layout - Remove "Back" link
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
<?php | |
/** | |
* Remove the "Back" link in DIY layout | |
*/ | |
add_action( 'gravityview/template/before', function() { | |
remove_action( 'gravityview/template/diy/single/before', array( 'GV\Entry_DIY_Template', 'back_link' ) ); | |
}, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how about a table view?