• Brand new clean WP 4.2.2 install on WP Engine host
    Default theme 2015, no other plugins installed
    Installed v1.5.5 from the WP repo – activated it

    Go to Events Management and try to add an event:

    1) the modal mask covers the new event layer so you can’t select anything
    2) the new event layer is positioned way offscreen behind the nav!

    Even if I manipulate the DOM to be able to enter an event, it doesn’t even appear on the calendar!

    Seems like this plugin just doesn’t work on 4.2.2.
    Using Firefox latest version. No javascript errors present in the console.

    https://www.ads-software.com/plugins/php-event-calendar/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Palpatine1976

    (@palpatine1976)

    Since I can’t attach a screenshot, here’s a link to a pic of the issue:

    https://www.twiginteractive.com/TEMP/calendar.png

    Plugin Author chenster

    (@chenster)

    WPEngine has some unique CSS style that have conflicts with PEC plugin.

    I’ve attached a fix below both CSS and javascript.

    <style>
    /* fix WPEngine black screen causes its own CSS */
    .modal {
    width:auto;
    margin-left:0px;
    background-color:transparent;

    }

    .modal-backdrop.fade.in {
    z-index:1010;
    }

    .modal-dialog {
    padding: 0px;
    }
    </style>

    <script>
    $(function () {
    if ($(‘#wpe-common-css’).length) {
    $(‘<link href=”/path/wpe-common-css-fix.css” rel=”stylesheet”>’).appendTo(“head”);
    }
    });
    </script>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin just doesn't work!’ is closed to new replies.