Forum Replies Created
-
AuthorPosts
-
Christopher
ParticipantFirst of all many thanks!
In my page.php I use global $post to get the id of the current page ($page_id = $post -> ID), but this doesn’t work for events.
I tried to get the category with a self written shortcode and use it in a description of an event, that works. But when I use this shortcode in my page.php it again gets an empty value.
Where is my fault?
Christopher
ParticipantHey Brook,
Thanks for your reply and hints, I got it working although not all of the columns could be removed, but that’s fine.
Best regards and many thanks
ChristopherChristopher
ParticipantHi Geoff,
Thanks for your reply and hints, I got it working by rethinking the way I catch the event details.
Best regards
ChristopherFebruary 27, 2017 at 1:11 am in reply to: iCal URL is correct, but iCal Importer doesn’t get events #1246129Christopher
ParticipantHi,
I actually got this point, but I’m confused why the iCal Importer did work all the time and without any changes at some point didn’t work any more.
As we only need to import iCal feeds (in fact we just want to import events that are generated with the Events Calendar plugin from one website to another) the Event Aggregator is way too much because we have to buy a license every year, what is too expensive for us.
To summarize we don’t get any support with the iCal Importer problem, but therefore have to use the Event Aggregator and rebuy a license when the current one will be expired?
February 27, 2017 at 1:04 am in reply to: Only show events with open registration in month view #1246127Christopher
ParticipantThanks for your answer and the suggested workaround.
This could work, but we still have to check if an event is full or not or if the registration date is over.Isn’t there any hook or attribute or any information for an event where the expiration date of the registration is saved? Or a flag when the global stock of an event is full?
With this I could write some php to only show those events that are open.Christopher
ParticipantThank you for your answer.
As this can’t be adjusted I understand the reason why it is the correct behaviour in most of the cases.It would just be nice to have one extra row in which the totally sold and cancelled tickets could be carried back to have the actual number of attendees shown.
Could this possibly be a feature request?
Christopher
ParticipantHey,
Thanks!
That is exactly what I nedd.
Just one little thing: Is there a list of those keys? I’ve been searching for it but I haven’t been successful.Many thanks in advance and best regards
ChristopherChristopher
ParticipantHi Lars,
just take the snippet you can find above and change the functions tribe_export_custom_add_columns and tribe_export_custom_populate_columns like this example:
function tribe_export_custom_add_columns ( $columns ) { $columns['wc_first_name'] = 'First Name'; $columns['wc_last_name'] = 'Last Name'; $columns['wc_address'] = 'Address'; return $columns; }function tribe_export_custom_populate_columns ( $value, $item, $column ) { $order = new WC_Order( $item['order_id'] ); $firstname = utf8_decode($order->billing_first_name); $lastname = utf8_decode($order->billing_last_name); $address = utf8_decode($order->billing_address_1) . ' / ' . $order->billing_postcode . ' / ' . utf8_decode($order->billing_city); if ( isset($order) ) { switch ($column) { case 'wc_first_name': $value = $firstname; break; case 'wc_last_name': $value = $lastname; break; case 'wc_address': $value = $address; break; } } else { $value = '-'; } return $value; }With this you get three additional columns in which the data of each attendee is included (only if the attendee has this data supplied).
Does this help?February 21, 2017 at 11:59 pm in reply to: iCal URL is correct, but iCal Importer doesn’t get events #1243577Christopher
ParticipantHi Cliff,
Thank you very much, I didn’t know that a license for Event Aggregator was included in our plan.
Before purchasing iCal Importer it was said that you could get a license for the iCal Importer that expires after one year, but after this period you can still use the Importer, just without support und updates. On the other hand you must rebuy the license for the Event Aggregator every year, without a license the Aggregator doesn’t work at all.
As I didn’t want to rebuy a license every time it expires this is quite unsatisfying.
Best regards
ChristopherChristopher
ParticipantJust a quick update: I got it working! Everything’s quite fine now, except one little thing:
Is it possible to exclude some columns? Things like the ticket id or security code are useless for our needs so it would be great if we could delete these columns from the csv export or if this is not possible to rearrange the order of the columns 🙂
Christopher
ParticipantHi,
thanks for your assistance!
Am I right that this is for registered users? We only have tickets for unregistered users so there is no user_id.
Is there any documentation about the functions so I can look which attribute we should check to get woocommerce data like “billing_postcode” and custom fields?I’m sorry if this is not understandable.
February 21, 2017 at 12:10 am in reply to: Additional attendee information only when user is logged in #1242782Christopher
ParticipantThis reply is private.
February 14, 2017 at 12:32 am in reply to: Additional attendee information only when user is logged in #1234322Christopher
ParticipantThis reply is private.
Christopher
ParticipantHi Geoff,
unfortunately there was no message in the wordpress plugin backend to tell me the Event Tickets Plus can be updated. I just had to deactivate this plugin and then the message showed up.
Now everything works fine, thank you so much for your support!
Christopher
ParticipantOkay, so I will just set the period as short as possible.
Thank you very much for your assistance!
-
This reply was modified 9 years, 4 months ago by
Christopher.
-
This reply was modified 9 years, 4 months ago by
-
AuthorPosts
