In the back to search button text is not showing up correctly. Adding
position relative to the parent of this button so it works correctly.
Fix js errors by adding to the dep arg for the wp_register_script call.
#glm-event-wrapper.event-detail {
/* max-width: 650px; */
margin: 0 auto;
+ position: relative;
}
.glm-event-day-row {
margin-top: 8px !important;
wp_register_script(
'event-dashboard-js',
GLM_MEMBERS_EVENTS_PLUGIN_BASE_URL . '/js/dashboard.js',
- array('jquery-ui-datepicker','jquery-ui-autocomplete'),
+ array('jquery-core', 'jquery-ui-datepicker','jquery-ui-autocomplete'),
GLM_MEMBERS_EVENTS_PLUGIN_VERSION,
true
);
wp_register_script(
'event-dashboard-js',
GLM_MEMBERS_EVENTS_PLUGIN_BASE_URL . '/js/dashboard.js',
- array('jquery-ui-datepicker','jquery-ui-autocomplete'),
+ array('jquery-core', 'jquery-ui-datepicker', 'jquery-ui-autocomplete'),
GLM_MEMBERS_EVENTS_PLUGIN_VERSION,
true
);