Which one would you prefer people to use?
Thread Starter
mrppp
(@mrppp)
The one I get when from menu “ADD EVENT” – add new The style/theme I have set not WP
hi,
can you share the screenshots of the two? just for comparison.
Thread Starter
mrppp
(@mrppp)
Clicking edit from event after clicking calendar NOTE: Same when logged in as user only without the full admin options
http://www.gigzone.co.uk/WP.png
clicking add event from menu then add new
http://www.gigzone.co.uk/WP1.png
I see, could it be that you set an “Edit events page” at events > settings > pages > other pages > Edit events page ?
Thread Starter
mrppp
(@mrppp)
I have that set to ADD EVENT
Thread Starter
mrppp
(@mrppp)
if I remove this then click add event I get no form to fill in but still see “EDIT ENTRY” that goes to WP screen same happens if editing locations
IS it because when I log in as USER I see the WP bar at top of screen
Thread Starter
mrppp
(@mrppp)
I have set the Edit events page to none and added form shortcode to my page add event. But I still see the edit event on all my pages that still return a WP screen
Thread Starter
mrppp
(@mrppp)
I have now created two pages one for bookings another that shows the events I have I called it edit events.
Appears to work as I want it to.
So now all I need to do is remove this Edit this entryon each page. What .php file will I find that in?
the hyperlink points to
http://www.mysite.uk/wp-admin/post.php?post=13&action=edit
Shown Here
http://www.gigzone.co.uk/WP3.png
“So now all I need to do is remove this Edit this entry”
actually, this is a wordpress issue however you can try page.php or single.php within your theme or add this snippet in your theme functions.php
add_filter( 'edit_post_link', '__return_false' );
Thread Starter
mrppp
(@mrppp)
Thank you so much!! works fine now
add_filter( ‘edit_post_link’, ‘__return_false’ );
Have it set out as so
http://www.gigzone.co.uk/