• Resolved borellidesigns

    (@borellidesigns)


    Hi! Since the most recent update, I’m experiencing a conflict with the Gravity Forms date picker.

    Your styling and script is overwriting the Gravity Forms date picker. Is there a way to disable your plugin styles/scripts on certain pages? Specifically where Gravity Forms exist?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Farhan Noor

    (@farhannoor)

    Hi,

    A quick hack to fix this issue would be to deactivate Gravity Forms plugin & then reactivate it. If it do not work then you can disable date-picker styling sheet used for ApplyOnline plugin by using given piece of code into your theme’s/child theme’s functions.php file:

    
    function gravity_datepicker_fix() {
       wp_dequeue_style( 'jquery-ui-css' );
    }
    add_action( 'wp_print_styles', 'gravity_datepicker_fix', 100 );
    

    Best Regards.

Viewing 1 replies (of 1 total)

The topic ‘Date Picker conflict with Gravity Forms’ is closed to new replies.