The page in question is here: http://allegianceautorepairs.com/appointment/
I have been unable to find a thread with the same error:
Under the Date Picker in Gravity Forms, when you click into the date box and the calendar pops out it has 4 arrows (2 for previous month and 2 for next month) which is an error by itself, but on the second set of arrows it has a mirrored image of the word “Previous”. I do not know if the word “Next” is the same because I do not see it; however, if I try to copy the text (like to post here), Previous and Next are copied to the clipboard.
After reading about other errors, I tried to disable the plugin and re-enable it, but that did not fix it. It is the same in Chrome and FireFox.
The plugin, WordPress, and WPBuilder are up to date. I know the site lacks SSL, but I don’t think that would cause this.
I found a thread that talked about removing any styling in the theme’s functions.php file, but I wasn’t sure if this would solve the issue:
function gravity_datepicker_fix() {
wp_dequeue_style( ‘jquery-ui-css’ );
}
add_action( ‘wp_print_styles’, ‘gravity_datepicker_fix’, 100 );
Another forum user suggested this CSS:
.ui-datepicker-prev span {
/* position: absolute; */
-moz-transform: scaleX(-1);
/* -webkit-transform: scaleX(-1); */
-o-transform: scaleX(-1);
/* transform: scaleX(1); */
-ms-filter: fliph;
filter: fliph;
}
But it did not fix the issue.
Any ideas? Has anyone else seen this issue?