- This topic has 2 replies, 2 voices, and was last updated 6 years, 2 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The forum ‘How do I …’ is closed to new topics and replies.
Events Made Easy › Forums › How do I … › Work with uploaded files?
Thanks for including file uploads as a field type. Love it.
Are the uploaded files visible in the EME interface? I’ve looked around and haven’t seen anything.
I can see my upload sitting in wp-contents/events-made-easy/bookings. If we want to do anything with the file via web hooks what information should we get from the booking to identify the files that were loaded?
In the interface: when you edit the relevant person/member/booking, you’ll see the list of uploaded files. Using #_FILES in member or booking related shortcodes will also get you that list.
The file info is not in the booking array, use eme_get_uploaded_files($booking_id) for that (short for eme_get_uploaded_files($booking_id,”bookings”), you have identical calls for “people” and “members”).
Thanks for that information Franky.