Posted: October 20, 2014 at 9:49 am
|
I created a venue but didn’t publish it, just kept is a draft. I could see the venue in venue admin page and edit it etc. How do I get it back? Here’s the stuff you asked for: |
Hi, I have reproduced this locally and created a ticket for our developers to investigate and fix. We will update this thread with any news. |
|
|
I’m not frightened of doing a direct database update as a quick solution. 😉 |
I can provide you with a simple change that will display your venues within the Admin once again, however, we have since found that ‘Private’ venues are also not selectable within the Event Editor. So the fix I can provide will allow you to edit the venues again, but not select those private venues within your events, currently in order to do so they would need to be publicly published. (A ticket has also been created for this) If you open up event-espresso-core-reg\caffeinated\admin\new\venues\Venues_Admin_Page.core.php On line 915 you will find: 'status' => isset( $this->_req_data['venue_status'] ) && $this->_req_data['venue_status'] != '' ? $this->_req_data['venue_status'] : array('IN', array('publish', 'draft') ) Simply add “, ‘private'” to the array of status used there. So: 'status' => isset( $this->_req_data['venue_status'] ) && $this->_req_data['venue_status'] != '' ? $this->_req_data['venue_status'] : array('IN', array('publish', 'draft', 'private') ) That will then display your private venues within the venue list once again. |
|
|
Thank you. That did it. I couldn’t find the file in the Dashboard plug-in editor but did find it when I went to the raw directory. I changed it to public. don’t panic for a fix on my behalf, I’m OK now. |
Thanks for confirming. This will be available in an upcoming release of Event Espresso 4. — |
|
Hi there, A little update on missing venue when it’s Privately published issue: It’s been fixed and the fix was included in the Event Espresso 4.6.19.p release. |
|
The support post ‘Disappearing Venues’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.