Christopher

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 38 total)
  • Author
    Posts
  • in reply to: Getting custom field values to show category title #1256589
    Christopher
    Participant

    First 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?

    in reply to: Woocommerce info in CSV export? #1248238
    Christopher
    Participant

    Hey 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
    Christopher

    in reply to: Change email subject with event title #1248237
    Christopher
    Participant

    Hi Geoff,

    Thanks for your reply and hints, I got it working by rethinking the way I catch the event details.

    Best regards
    Christopher

    in reply to: iCal URL is correct, but iCal Importer doesn’t get events #1246129
    Christopher
    Participant

    Hi,

    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?

    in reply to: Only show events with open registration in month view #1246127
    Christopher
    Participant

    Thanks 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.

    in reply to: Incorrect number of attendees in event details #1246125
    Christopher
    Participant

    Thank 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?

    in reply to: Woocommerce info in CSV export? #1246119
    Christopher
    Participant

    Hey,

    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
    Christopher

    in reply to: Woocommerce info in CSV export? #1244383
    Christopher
    Participant

    Hi 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?

    in reply to: iCal URL is correct, but iCal Importer doesn’t get events #1243577
    Christopher
    Participant

    Hi 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
    Christopher

    in reply to: Woocommerce info in CSV export? #1242819
    Christopher
    Participant

    Just 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 🙂

    in reply to: Woocommerce info in CSV export? #1242801
    Christopher
    Participant

    Hi,

    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.

    in reply to: Additional attendee information only when user is logged in #1242782
    Christopher
    Participant

    This reply is private.

    in reply to: Additional attendee information only when user is logged in #1234322
    Christopher
    Participant

    This reply is private.

    in reply to: No Woocommerce options available in settings #1234301
    Christopher
    Participant

    Hi 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!

    in reply to: iCal URL of all events within Events Calendar? #1202493
    Christopher
    Participant

    Okay, 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.
Viewing 15 posts - 16 through 30 (of 38 total)