BLACK FRIDAY SALE

SAVE 30% NOW!

0 days
0 hours
0 minutes
0 seconds

gotrls_display_on_view_edit_screen

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);

Since

version 2.0.4

Scroll to Top