Hello,
I’ve just updated rsvp 2.5.6 and Link guests to matching user profile doesn’t work after filling /profile/{user_id}
When I click to the username, nothing happens.
Could you check if it’s a bug or if I missed something
Thanks
Jan 13,2017 AT 5:02PM - 5 years ago -sure thing would you mind sharing the wp-admin access to your site agian please
For me it is not working either.
I noticed in eventon-core-functions.php the result of the evo_check_yn($this->optRS, ‘evors_guest_link’) call is not returning true because $meta_array[$fieldname][0] not equals ‘yes’ but ‘y’, the first character of the string ‘yes’.
The contents of $this->optRS[‘evors_guest_link’] is ‘yes’ but you are reading the contents of $this->optRS[‘evors_guest_link’][0] returning ‘y’.
thank you Bart! Great team:)
Ah thanks a lot Bart. You two are on to things like hawks 🙂
So what you can do is replace that line of code with
$LINKGUEST = (!empty($this->optRS[‘evors_guest_link’]) && $this->optRS[‘evors_guest_link’] == ‘yes’)? true: false;
on eventon-rsvp/includes/class-frontend.php line 511
Im adding a new function in eventon version 2.5 that does this checks and hoping to have eventon updated this week so I can release correct RSVP version fix after eventon 2.5
Cheers guys!