Skip to content

Instantly share code, notes, and snippets.

@cbirdsong
Created August 12, 2021 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbirdsong/c105318a3b85c63ee0d86d016598671b to your computer and use it in GitHub Desktop.
Save cbirdsong/c105318a3b85c63ee0d86d016598671b to your computer and use it in GitHub Desktop.
Remove some/all gravity forms CSS
<?php
function gravity_forms_remove_theme_css()
{
// remove Gravity Forms CSS
// wp_dequeue_style('gforms_reset_css');
// wp_dequeue_style('gforms_datepicker_css'); // Ugly datepicker > broken illegible datepicker
// wp_dequeue_style('gforms_formsmain_css');
wp_dequeue_style('gform_theme');
wp_dequeue_style('gform_theme_ie11');
}
add_action('gform_enqueue_scripts', 'gravity_forms_remove_theme_css', 11);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment