cpham / acf-contact-form

Contact Form Extension for Advanced Custom Fields (Beta)
61 stars 14 forks source link

Disable CSS #22

Closed elliottmangham closed 6 years ago

elliottmangham commented 7 years ago

Is it possible to disable the CSS that comes with the plugin? If no, can it be a feature?

Thanks!

cpham commented 7 years ago

What css? for the form, or for the email?

elliottmangham commented 7 years ago

Hi, for the form

cpham commented 7 years ago

you can put this in your functions.php file

// disable acf css on front-end acf forms
add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
function my_deregister_styles() {
  wp_deregister_style( 'acf' );
  wp_deregister_style( 'acf-field-group' );
  wp_deregister_style( 'acf-global' );
  wp_deregister_style( 'acf-input' );
  wp_deregister_style( 'acf-datepicker' );
}