Okay
  Public Ticket #1938911
Back-End Visibility for only author of the event
Closed

Comments

  • Lisa started the conversation

    How do I set up back-end visibility for users? I want them to only be able to edit their own events. 

    What is the correct setting for this? 

    I've tried all options. It's either they can access and edit every event or they can access none.

  •  795
    Zhivko replied

    The correct setting should be "Just Me".


    Stachethemes Developer

  • Lisa replied

    Thanks for your help, unfortunately it didn't work :( - what am I doing wrong?

    I've edited the calendars and changed all to 'just me' in backend access.

    I've then created a new user and submitted an event in the frontend. In the backend I can edit all the options in the plugin but can not change or see my own submitted event. 

    Even after approval by an admin it's still not visible.

  •  795
    Zhivko replied

    Set the calendar back-end visibility to "public".

    Open file stachethemes_event_calendar\front\class\class.submit-event.php on line 107 above:

    $result = $event->insert_post();

    add following parameter:

    $event->set_back_visibility('stec_private');

    Stachethemes Developer