• Resolved Brian7

    (@brian7)


    Since the lastest plug in update it has not been possible to record a category for an event. This means that if the widget was being used to display the upcoming events by category on say the footer on webpages, they no longer display for any new events or for any events that are changed/updated.

    For us this was able to be corrected by editing evr_events_post.php and evr_events_update.php.

    Replace this line:
    $event_category = serialize((string)@$_REQUEST[‘event_category’]);

    with

    $event_category = serialize(@$_REQUEST[‘event_category’]);

    https://www.ads-software.com/plugins/event-registration/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author avdude

    (@avdude)

    The correct fix should be:

    $event_category = serialize((array)@$_REQUEST[‘event_category’]);

    This needs to be done in both the evr_events_post.php and evr_event_update.php files.

    We will have an official release this weekend.

    Thread Starter Brian7

    (@brian7)

    Thanks AVDUDE

    Just discovered another bug which hopefully you can fix in the update (you may already be aware of it)

    Payments being passed back from PayPal are being recorded against the attendee ok however are not displaying on the ‘Payment’ displays against the Event. I have’nt traced bug yet however initial look at wp_evr_payments shows the only difference between the PayPal payments and those entered manually (these are displaying ok) is the date format, so one assumes this may be the issue.

    By the way this is a great plug – thanks

    Hello –
    This did not fix my issue. Any other advice?

    Thread Starter Brian7

    (@brian7)

    With AVDUDE ‘s change above the plug in is working for us.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Event Categories Problem’ is closed to new replies.