Skip to:
Content
Pages
Categories
Search
Top
Bottom

Bug in BuddyPress Simple Events (and how to fix it)

  • @creativeusername

    Participant

    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.

Viewing 1 replies (of 1 total)
  • @shanebp

    Moderator

    Please use the code button when sharing code.

    Thank you for this report and suggested fix.
    Typically, bug reports are submitted in the support forum for a specific plugin.

    BuddyPress Simple Events


    The plugin has been updated.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.
Skip to toolbar