• Resolved Art

    (@art1986)


    When I try to edit one reoccurring event, when I hit update/save it prompts me: 1. save edits on this event only, or 2. save edits on all future reoccurring events. BUT there’s a giant black overlay (a div) which covers up the buttons because it’s z-index is 300001. I tried to remove it with CSS and was unsuccessful.

    A workaround is to use firebug/developer tools and remove the div overlay, but my client who uses the plugin only uses Safari and doesn’t have firebug/developer tools so I have to edit the events for them.

    http://wordpress.org/plugins/the-events-calendar/

    EDIT: WP 3.6 – the events calendar pro, wootickets, media temple hosting, thanks

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

    (@art1986)

    Temp fix provided in Tribe’s forum:

    With the 3.x family of releases and WordPress 3.6 users are finding that the update recurring event dialog that appears when trying to save a change to recurring events appears but is behind a grey ‘miasma’ and does nothing when its buttons are clicked upon.

    We’ll be addressing this as quickly as possible, but in the interim adding the following brief snippet to your functions.php file should help to resolve this:

    add_action('admin_head', 'tribe_fix_recurrence_dialog');
    
    function tribe_fix_recurrence_dialog(){
    ?>
        <style type="text/css">
            .ui-widget-overlay.ui-front {z-index: 90; }
        </style>
    <?php
    }

    Glad you found the fix 🙂

    That is indeed our recommended workaround and it should also be fixed in one of our maintenance releases.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘can't edit reoccurring event, black overlay, z-index is 300000’ is closed to new replies.