Glad you’re enjoying the plugin.
Do you mean when editing bookings or events?
Hi
Sorry so if the customer created an event lets say Farmers Market, and they want to edit it there is the option (if they are logged in) to hit the edit button on the top left (see screen shot http://ourpandatest.info/test/wp-content/uploads/2015/06/Screen-Shot-2015-06-25-at-10.38.14-PM.png) But when they click on that they see all the back end of WordPress which I think would be confusing for this audience and lets them see things I really don’t want them to. (http://ourpandatest.info/test/wp-content/uploads/2015/06/Screen-Shot-2015-06-25-at-11.02.28-PM.png)
so I was wondering if there is a way for the customer to be able to edit their event without them seeing the back end of things. The Directory Plugin that we are using has that interface not sure if this has that capabilities. (http://ourpandatest.info/test/wp-content/uploads/2015/06/Screen-Shot-2015-06-26-at-12.31.11-PM.png and http://ourpandatest.info/test/wp-content/uploads/2015/06/Screen-Shot-2015-06-26-at-12.31.20-PM.png )
Sorry for the long explanation
Thank you for your help.
Susan
maybe you can try the frontend management pages at events > settings > pages > other pages > Front-end management pages > Edit events page
Thank you saw that awhile go but must have forgot about it. Thank you again for your help
Susan
For some reason, even though I have Edit Events page set to My Events, it still takes me to the back-end. Any idea why this might be?
Michaelpfaff,
I had the same issue and I ended up putting in this code in the function.php folder. I am using a child theme so I created a function.php file in the child theme just FYI
add_action( 'init', 'blockusers_init' );
function blockusers_init() {
if ( is_admin() && ! current_user_can( 'administrator' ) &&
! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
wp_redirect( home_url() );
exit;
}
}
Just note that if you do this you won’t be able to get into the backend by the url.com/wp-admin you will need to now type in url.com/wp-login.php
Just FYI
Hope that help it worked for me.
Susan