Created
January 18, 2016 17:59
-
-
Save nathaningram/8143a4c6ba3523aa7653 to your computer and use it in GitHub Desktop.
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
| // Fixes Gravity Form Display in WP Help | |
| // Add to functions.php of active child theme | |
| function ni_gf_in_wphelp() { | |
| echo '<style type="text/css"> | |
| #cws-wp-help-document .gform_wrapper {display:inline-block !important;} | |
| </style>'; | |
| } | |
| add_action('admin_head', 'ni_gf_in_wphelp'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment