Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created January 18, 2016 17:59
Show Gist options
  • Select an option

  • Save nathaningram/8143a4c6ba3523aa7653 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/8143a4c6ba3523aa7653 to your computer and use it in GitHub Desktop.
// 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