Forum Replies Created
-
AuthorPosts
-
Barry
MemberI’m sorry we missed your update, first of all, coullbikes: generally it is best to create a fresh thread of your own as we are not actually notified of updates made by anyone other than the original poster.
The answer right now though is no – we don’t currently have a timetable for WPML integration though it of course remains something we’re interested in doing at some future point.
I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
August 20, 2014 at 7:03 am in reply to: Week days only in events that span more than one week? #686261Barry
MemberI’m sorry we missed your replies, @ine, but unfortunately we’re only notified when the original poster updates the thread. For that reason it is always best to create a fresh thread of your own.
Quite a lot of time has passed at this point so I am going to go ahead and close this one – but please do feel free to create new threads as needed if you still require help.
Barry
MemberSorry we missed your updates – unfortunately we are not notified when someone other than the original poster updates a thread.
Quite some time has passed at this point so I’m going to go ahead and close the thread – but if you do still need help please do create a new thread and one of the team will be only too happy to help.
August 20, 2014 at 7:00 am in reply to: show list, map, week month.. icons on right side "find event" , not on the top #686252Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberI’m sorry we missed your post, laurasbeads, but unfortunately we are not notified when someone other than the original poster updates a thread. For that reason, it is always best to create a new thread of your own.
Quite a bit of time has passed at this point so I will go ahead and close the thread, but please do feel free to create new threads if you still need assistance š
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberI’m sorry we missed your posts, websource. Please note that we are only notified when the original poster updates the thread – so it is always best to create new threads of your own rather than post in someone else’s.
It’s been quite a while at this point so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
August 20, 2014 at 6:53 am in reply to: Capturing extra details per attendee for the quantity of tickets ordered #686224Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed (do note that we are not automatically notified when someone other than the original poster adds a reply, so it is always best to create a new thread of your own). Thanks!
August 20, 2014 at 6:51 am in reply to: Recurring Events showing multiple times since update #686213Barry
MemberApologies for missing those final updates, everyone. Unfortunately a quirk in our forum tools means we have not been notified when someone other than the original poster adds a reply.
It’s been quite a while at this point and hopefully the problem has been resolved for all, but if not please do go ahead and create new threads of your own and one of the team will be only too happy to assist š
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
August 20, 2014 at 6:48 am in reply to: Woocommerce tickets: Customer cancels ticket still shows as being sold #686202Barry
MemberHi – apologies for not seeing your post. Unfortunately we aren’t always notified when someone other than the original poster replies – for that reason and just because every situation is unique it is normally best to create a new thread of your own.
Given that and given also quite a lot of time has passed at this point I will go ahead and close the thread, but please do let create a new one if you still need assistance.
Barry
MemberHi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!
Barry
MemberI’m sorry we didn’t see your reply – unfortunately, we aren’t always notified if someone other than the original poster updates the thread. For that reason it’s normally best to create a fresh thread of your own.
With that in mind and as quite a lot of time has passed I’ll go ahead and close this thread – but please do create a new one if you still need help with anything š
Barry
MemberIām on a multisite ā does that make a difference?
I don’t believe this would create a problem and, on running a quick test, I could achieve the same thing as on a regular site (ie, create a template override and customize the email).
As mentioned previously, I did replace the core plugin file under /plugins/the-events-calendar-community-events/views/community/
No change.
OK, thanks for clarifying.
In that case – if you are not seeing any changes when modifying the core template, nor when you set up a template override – something else is likely at play here as discussed in my last reply and I’m afraid that, regrettably, it doesn’t sound like a situation where we can do much more to help you. You are likely to need the assistance of your web host or a developer to see this one through.
Barry
MemberHi everyone,
Apologies first of all for not seeing all these posts.
A quirk in our current forum software means that if the original poster (@outstanding) replies we’re notified that they are waiting on a response, whereas the same thing does not occur if other people enter the thread. This is obviously something that needs be addressed on our side – but until then it is best to create new threads rather than enter threads created by another user (as Leah suggested).
That would be a fairly advanced customization to make at this time, but I imagine it would be possible. We are implementing some changes that will greatly ease this process
These changes did indeed roll out with the release of The Events Calendar 3.6. I should emphasize though that they were primarily aimed at making it for easier for developers to customize the attendee list – so this remains the sort of customization that requires the attentions of someone with a little coding know-how: there is not (and there are currently no plans to implement) a user interface that lets you choose which fields to pull in.
Let me summarize a few key areas that you would need to look at to implement such a customization:
- The attendee list is based on WP_List_Table (the basic structure all such tables are built-on in WordPress) and some knowledge of working with this is definitely needed
- As with any other WP_List_Table the number of columns can be altered via the manage_SCREEN_ID_columns filter … in this case that means manage_tribe_events_page_tickets-attendees_columns
- To actually populate rows within any custom columns you might add the tribe_events_tickets_attendees_table_column filter can be used
- Last but not least, if you need to obtain data collected with a forms plugin or even data natively collected by WooCommerce itself you’re going to need a working knowledge of their respective APIs
With all that said, here’s a short piece of sample code that shows the basic approach for adding a custom column:
add_filter( 'manage_tribe_events_page_tickets-attendees_columns', 'add_my_custom_attendee_column', 20 ); add_filter( 'tribe_events_tickets_attendees_table_column', 'populate_my_custom_attendee_column', 10, 3 ); function add_my_custom_attendee_column( $columns ) { $columns['custom_id'] = 'Customer Address'; return $columns; } function populate_my_custom_attendee_column( $existing, $item, $column ) { if ( 'custom_id' !== $column ) return $existing; $order = new WC_Order( $item['order_id'] ); $address = $order->get_billing_address(); return esc_html( $address ); }I hope that clarifies things – at this point though I will go ahead and close out the thread, but of course you are more than welcome to post fresh threads if you need help that is specific to your situation (but please do remember that we can’t help in detail with every customization – though of course we’ll do our best to point you in the right direction if we can).
Thanks again to all of you for your patience and apologies once more for missing the fact that so many of you were waiting for updates.
-
AuthorPosts
