Forum Replies Created
-
AuthorPosts
-
Tom
ParticipantThis reply is private.
Tom
ParticipantThis reply is private.
Tom
ParticipantGeoff B,
I have a bespoke WP theme and cannot revert to the standard template, so tried changing the tribe-events folder’s name to z_tribe-events as you suggested. It has made no difference: when I go to add a new event, the “Event Time & Date” section of the input form still carries the warning “You have changed the recurrence rules of this event. Saving the event will update all future events. If you did not mean to change all events, then please refresh the page.” – PLEASE NOTE: this is happening for brand new events I am trying to enter.
There were some customizations to make certain fields required, but none of these have been changed since first install over a year ago: this has broken only since I renewed the Community licence, and at the same time accidentally deleted the Pro add-in, and then re-installed before renewing its licence.
Tom
ParticipantHello Nico,
Yes, the other outstanding problem is now five days old with no response and is currently stopping my community users from adding new events, so I do hope someone can help address that as urgently as possible once the Licence bug is fixed.
Tom
ParticipantBumping this after four days with no reply.
June 22, 2016 at 12:17 am in reply to: Organizer is required and Organizer Email is required error #1130250Tom
ParticipantGeorge,
Thank you – I wil try that.
June 20, 2016 at 3:26 pm in reply to: Organizer is required and Organizer Email is required error #1129550Tom
ParticipantGeorge,
I think I’ve tracked this down to an extra filter in the functions.php code that I did not know was there (I did not set the events system up originally. There was an additional function
if ( empty( $_POST[‘organizer’][‘Email’] ) )
$fields[] = ‘Organizer Email’;Below the ‘standard’ required function, and when I commented this out it seems to be working – will know for certain once my users try adding their events. I guess the question that remains is when it will be safe to make organizer required again…
June 17, 2016 at 5:56 am in reply to: Organizer is required and Organizer Email is required error #1128358Tom
ParticipantThanks Ryan, I have been away for a couple of days on business but will now try again to remove all required filters from that snippet. As far as I can remember I do not have any other code that looks for organizer email, which is the strange thing about this, but I will do some more work on it today.
A week has past and I now have a queue of unhappy event organisers, so as a last resort I think I may have to completely remove all Events Calendar software and start from scratch with a complete re-install – presuming that the existing event data will not be removed with it.
June 16, 2016 at 1:35 am in reply to: Organizer is required and Organizer Email is required error #1127758Tom
ParticipantConfirming that all modules are up to date version 4.2, and I have tried creating a brand new user and adding an event, but still get “Organizer Email Required” error and cannot add events.
Is there no solution to this? You say you cannot ‘recreate it’ at your end, but for five days now this product has been broken on my installation – though I changed absolutely nothing – and there is no fix? Surely there is something – is it worth deleting absolutely all Events Calendar plugins including the main Events Calendar and starting again, or will that use all the event data my users have already input?
I can see from the support forums that there are multiple problems with the new release, but would still appreciate some priority being given to resolving this as we move towards one week after reporting it. It is generating bad will with people who have paid me to add events and cannot, and I am soon going to be faced with compensating them and/or refunding fees.
June 15, 2016 at 2:12 pm in reply to: Organizer is required and Organizer Email is required error #1127567Tom
ParticipantGeorge, both modules were updated again to 4.2 last night, but no change.
June 15, 2016 at 1:35 am in reply to: Organizer is required and Organizer Email is required error #1127211Tom
ParticipantThis reply is private.
June 15, 2016 at 1:22 am in reply to: Organizer is required and Organizer Email is required error #1127210Tom
ParticipantJust bumping this as no advice or resolution after 48 hours – would appreciate support, as I have users anxious to add events and currently unable to do so.
June 14, 2016 at 1:55 am in reply to: Organizer is required and Organizer Email is required error #1126596Tom
ParticipantThis reply is private.
June 14, 2016 at 12:25 am in reply to: Organizer is required and Organizer Email is required error #1126578Tom
ParticipantGeorge,
I’ve done that and the organizer required error has disappeared, but the organizer email required error is still happening, and I still cannot add events because of it. As you know, the organizer email is not one of the filters, which now looks like:
if (!function_exists(‘my_community_required_fields’)){
function my_community_required_fields( $fields ) {
$fields = array(
‘post_title’,
‘post_content’,
‘EventCost’,
‘EventURL’,
‘EventStartDate’,
‘EventStartHour’,
);June 13, 2016 at 10:06 am in reply to: Organizer is required and Organizer Email is required error #1126202Tom
ParticipantI have used a similar snippet to require various fields including organizer:
if (!function_exists(‘my_community_required_fields’)){
function my_community_required_fields( $fields ) {
$fields = array(
‘post_title’,
‘post_content’,
‘EventCost’,
‘EventURL’,
‘EventStartDate’,
‘EventStartHour’,
‘organizer’,
); -
AuthorPosts
