Table Of Contents
Description
Use this filter to disable the side summary on Gravity View edit screen page.
Parameters
$display_on_edit_screen | Bool defaults to true
$form | Array
$form_id | Int
Return
Bool true to show and false to hide it
Usage
<?php
/**
* Example 1: Turn off side summary for specific form (Id 13 in this example)
* Instructions: Change the _13 to your form ID and copy the line into your functions.php
**/
add_filter("gotrls_display_on_view_edit_screen_13" , "__return_false", 10, 3);
/**
* Example 2: Turn off side summary in Gravity View edit screen for ALL forms
* Instructions: Copy the line into your functions.php
**/
add_filter("gotrls_display_on_view_edit_screen" , "__return_false", 10, 3);