Forum Replies Created
-
AuthorPosts
-
Sky
KeymasterJane,
I’m glad to hear that the CSS will work as a temporary measure.
Someone will follow up with you here when this has been fixed to let you know.
Please let me know if you have any questions in the meantime.
Thanks,
SkySky
KeymasterHi there,
You’re very welcome! Glad I could help.
Please let us know if you have any other questions or issues in the future.
Thanks,
SkySky
KeymasterMark,
Thanks for the update. I’m glad to hear the other issue is now resolved.
Please let us know if you have any questions or issues in the future.
Thanks,
SkySky
KeymasterHi Jane,
I’m glad to hear the performance issue seems to have worked itself out.
I still haven’t heard back about whether the change to the classic header was intentional or not. If you would like to completely hide this, you can just add the following CSS snippet to your site:
#tribe-events-bar { display: none!important; }
Hope that helps!
Sky
Sky
KeymasterHi there,
Thanks for the additional information.
There is not a way to set this up by default. It would certainly be possible with some customization, but I’m afraid I don’t have an easy example of how you would accomplish this. We are a bit limited in the amount of support we can provide for customizations like this, but I’d be happy to point you in the right direction if you feel up to it. It would require a bit of knowledge about PHP, and the WordPress Query system.
Is this something you would like to attempt? Let me know, and I’ll try to dig up a basic example of modifying the query.
Thanks
SkySky
KeymasterHi Tom,
Thanks for reaching out! I will try to help with your question.
There is a filter on the output of that function. You can replace what this returns from your functions.php file.
In this example, I have copied the original function’s logic into our custom filter callback. You would just need to replace ‘path/to/your-custom.gif’ with the full path to the image you want to use instead.
https://gist.github.com/skyshab/484c3c6bfeac4065ca7273737567284d
So just add this to your child theme’s functions.php, and modify it to use the image you want.
Hope that helps! Please let me know if you have additional questions about this.
Thanks,
SkySky
KeymasterHi there,
Thanks for reaching out. I’d be happy to help with your question.
The Eventbrite Tickets import functionality has be moved from “Legacy Imports” to “Imports” with the other import options. Just go to Events > Imports and select “Eventbrite” from the Import Origin dropdown.
Hope that helps! Please let me know if you have any additional questions about this.
Thanks,
SkySky
KeymasterHi Jane,
I’m sorry to hear that you’re having issues after updating. I will try to help you get this sorted.
Regarding the change to the classic header: I’m not sure if this change was intentional or not. The recent releases included some accessibility changes, and I don’t know if that was one of them. I have asked to find out, and as soon as I know I will follow up with you here about it.
When you say “the new update is causing a conflict upon loading” are you seeing errors? I just tried visiting your site, both the main calendar page and a single event, and it was quite snappy! At least on the front end. Are you seeing things slow to load only when logged in perhaps?
If you’d like to revert to a previous version of any of our plugins, you can visit the downloads page of your account, and select the version by clicking the arrow next to the download button. https://theeventscalendar.com/my-account/downloads/
Hope that helps. Please let me know about the performance issues you are having, and I’ll find out about the classic header issue.
Thanks,
SkySky
KeymasterHi there,
Thanks for reaching out. I will try to help with your question.
Can you tell me where you would like the categories to have this custom order? Where are you seeing this list of categories?
Thanks,
SkySky
KeymasterHello,
You’re very welcome!
Take care,
SkyAugust 2, 2018 at 11:12 am in reply to: The Events Calendar Relabler doesn't work for Community Events #1588890Sky
KeymasterHi there,
Thanks for reaching out. I’ll try to help with this if I can.
It doesn’t seem like the relabler plugin works with the Community Events plugin. This would be a great feature however. I would visit our User Voice Forum, and if nobody else has yet suggested this, submit this as an idea. People can then vote on this, and if enough people are interested, they may add it to the extension.
Hope that helps! Let me know if you have additional questions about this.
Thanks,
SkySky
KeymasterHi there,
Thanks for reaching out! I will try to help with your question.
I’m not quite sure I understand what you would like to do here. Since the events display in order of their date, your other options would be starting at the very oldest event date and working forward in time, or starting with the farthest event in the future and working back in time.
Are one of those what you had in mind? Or can you explain in more detail how you would like the list view to behave?
Thanks,
SkySky
KeymasterHi there,
Thanks for reaching out. Please note that we are limited in the amount of support we can provide for custom development such as this. That being said, I will try to get you pointed in the right direction.
If you take a look at this file, event-tickets/src/Tribe/Attendees_Table.php you can see all of the filters that are available to hook into in the attendees table.
I would start with the ‘tribe_tickets_attendee_table_columns’ filter in the get_table_column method on line 65.
Hope that helps!
Thanks,
SkySky
KeymasterHi again,
Will do!
Thanks for you patience,
SkySky
KeymasterHi again,
Yes, the ids reference the post ID for the RSVP/Ticket post type.
I’m not aware of anything that breaks this down in our documentation, but you can look specifically at the “get_ticket” method in the RSVP.php file I referenced above.
public function get_ticket( $event_id, $ticket_id ) {
$product = get_post( $ticket_id );if ( ! $product ) {
return null;
}$return = new Tribe__Tickets__Ticket_Object();
$qty = (int) get_post_meta( $ticket_id, 'total_sales', true );
$global_stock_mode = get_post_meta( $ticket_id, Tribe__Tickets__Global_Stock::TICKET_STOCK_MODE, true );$return->description = $product->post_excerpt;
$return->ID = $ticket_id;
$return->name = $product->post_title;
$return->price = get_post_meta( $ticket_id, '_price', true );
$return->provider_class = get_class( $this );
$return->admin_link = '';
$return->report_link = '';
$return->show_description = $return->show_description();$start_date = get_post_meta( $ticket_id, '_ticket_start_date', true );
$end_date = get_post_meta( $ticket_id, '_ticket_end_date', true );if ( ! empty( $start_date ) ) {
$start_date_unix = strtotime( $start_date );
$return->start_date = Tribe__Date_Utils::date_only( $start_date_unix, true );
$return->start_time = Tribe__Date_Utils::time_only( $start_date_unix );
}if ( ! empty( $end_date ) ) {
$end_date_unix = strtotime( $end_date );
$return->end_date = Tribe__Date_Utils::date_only( $end_date_unix, true );
$return->end_time = Tribe__Date_Utils::time_only( $end_date_unix );
}$return->manage_stock( 'yes' === get_post_meta( $ticket_id, '_manage_stock', true ) );
$return->global_stock_mode = ( Tribe__Tickets__Global_Stock::OWN_STOCK_MODE === $global_stock_mode ) ? Tribe__Tickets__Global_Stock::OWN_STOCK_MODE : '';$return->stock( (int) get_post_meta( $ticket_id, '_stock', true ) );
$return->qty_sold( $qty );
$return->capacity = tribe_tickets_get_capacity( $ticket_id );return $return;
}
To explore what is available in this object further, you can print_r() the return from a particular ticket using Tribe__Tickets__RSVP::get_ticket().
Hope that helps!
Thanks,
Sky -
AuthorPosts
