Bug in BuddyPress Simple Events (and how to fix it)
-
In file ./wp-content/plugins/buddypress-simple-events/inc/pp-event-screens.php
Line 56 includes the jquery-ui.css from google BUT, its hardcoded http causing it to fail to load on https sites. This causes date + timepicker to come up with limited styles.change this:
wp_enqueue_style( ‘jquery-ui-style’, ‘http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/themes/smoothness/jquery-ui.css’, true);to this:
wp_enqueue_style( ‘jquery-ui-style’, ‘//ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/themes/smoothness/jquery-ui.css’, true);problem solved.
- You must be logged in to reply to this topic.