• This plugin has a problematic css enqueue, that messes up checkboxes in admin, because of the slider.css that is enqueued for the backend switches.
    ( slider.css applies a position:absolute to any element with the class .checked )

    As a quick fix add this to your functions.php:

    function remove_datetimepicker_css(){
        if ( !isset($_GET['page']) || $_GET['page'] != 'dtpicker' ) {
            wp_dequeue_style('dtpkr-slider-style');
        }
    }
    add_action( 'admin_enqueue_scripts', 'remove_datetimepicker_css', 100 );
    

Viewing 1 replies (of 1 total)
  • Hey @jhtjards

    Thanks for letting us know about this CSS problem. I’ll pass it on to our developer team to look into and fix. We appreciate you sharing this quick fix!

    If you have any other concerns or questions, feel free to reach out.

    Best,

    Niel, Input WP Support Team

Viewing 1 replies (of 1 total)
  • The topic ‘Fix: Problematic CSS enqueue’ is closed to new replies.