1. you can remove the comments by WP > Settings > Discussion
2. you can enable wp registration for this at WP Settings > General > Membership or you can enable allow anonymous event submissions at Events > Settings > General > Event Submission Forms > Allow anonymous event submissions =Yes then assign a guest default user
Thread Starter
mrppp
(@mrppp)
I have that box Allow people to post comments on new articles I have NOT ticked
another thing to try is to re-copy your theme single.php and then rename it to single-event.php then search/remove the comment code.
Thread Starter
mrppp
(@mrppp)
what remove <?php comments_template( ”, true ); ?>
Thread Starter
mrppp
(@mrppp)
I have also noticed that if I register as a user, the event I created when clicked on goes to event url page but shows no event but going to locations I can see the event although clicking on it again no event shown
But by not logging in I can?
yes, you can try to remove <?php comments_template( ”, true ); ?> and about your second issue, you can post this in a new thread to avoid confusion.
Thread Starter
mrppp
(@mrppp)
OK tried to remove but still the same, tried different themes but still I have the Leave a Reply
actually, I would like to apologized I might mixed it up; the above suggestion is for single events page and you wanted to remove comments in your add-event page; you can try this in your page.php
e.g.
<?php if ( !is_page(42) ){ ?>
<?php comments_template( '', true ); ?>
<?php } ?>
*where 42 is your add-event page id
Thread Starter
mrppp
(@mrppp)
ok, before I do, I,m using /add-event/ rather than an ID also I have the issue on all pages even on /locations/hurst/ so any location page
Thread Starter
mrppp
(@mrppp)
OK removed <?php comments_template(); ?> from page.php appears to work, Thank you
There’s two more things to check in settings.
One, go to Events > Settings > Pages > Event Pages > Enable Comments and set that to No
Then, bulk edit your events and disable comments. That should take care of it, otherwise you need to modify your theme.