Temporary fix for blank box when adding datepicker field
-
I was trying to add the datetime field but I was unable to see the options when I clicked the button because the popup was blank.
I opened the inspector and noticed the following CSS Style hides the content of the popup.
.hidden, .js .closed .inside, .js .hide-if-js, .js .wp-core-ui .hide-if-js, .js.wp-core-ui .hide-if-js, .no-js .hide-if-no-js, .no-js .wp-core-ui .hide-if-no-js, .no-js.wp-core-ui .hide-if-no-js { display: none; }
I changed it to this in the inspector, and voila! It showed the options.
.hidden, .js .closed .inside, .js .hide-if-js, .js .wp-core-ui .hide-if-js, .js.wp-core-ui .hide-if-js, .no-js .hide-if-no-js, .no-js .wp-core-ui .hide-if-no-js, .no-js.wp-core-ui .hide-if-no-js { display: block; }
This solves the problem temporarily while you grab the shortcode, if you do it through the code inspector of your browser.
I hope this helps!
https://www.ads-software.com/plugins/contact-form-7-datepicker/
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Temporary fix for blank box when adding datepicker field’ is closed to new replies.