@danielmarkus – This is the first I have heard of this problem. Is the datepicker field included in GForms by default or by an addon?
@danielmarkus – Ok I will try to test this and get back to you.
Same problem. Please inform. Thanks
Hi, I just bumped into this too. The datepicker.min.css being loaded by Gravity forms is only setting a z-index of 9999, but hits it with !important, which trumps the 2000000000 set by popup maker.
body div#ui-datepicker-div[style] {
z-index: 9999 !important;
}
@danielmarkus, @iosios and @kopanda, this in your functions.php should patch it temporarily:
add_action( 'wp_head', 'gf_datepicker_fix', 1000000 );
function gf_datepicker_fix(){
?><style>
body div#ui-datepicker-div[style] {
z-index: 2000000000 !important;
}
</style> <?php
}
@rick Radko – Good catch. I will add some CSS fixes to Popup Maker to fix it from our end in the future.
@rick Radko,
I just ran into this issue and your function did the trick!
Thanks 🙂
@amanzidigital – Appreciate you letting @rick Radko know. Most people never give thanks :).