Forum Replies Created
-
AuthorPosts
-
Sky
KeymasterHi Cor,
I’m sorry to hear that you’re having an issue with the events display. I will try to help you get it sorted out.
Can you try going through the steps in our Testing for Conflicts Guide to see if this is being caused by a theme or plugin conflict?
If you are still seeing the issue after switching to the Twenty Seventeen theme and disabling all other plugins than the Events Calendar plugins, can you try enabling wp_debug and wp_debug_log as is described here. Once enabled, visit the site and navigate through the pages as before. If any errors are being generated on the backend, a file named “debug.log” should be created in your wp-content folder. Please upload the contents of this file here. If it is large, you can upload it as a text file.
Let me know how all that goes.
Thanks,
SkySky
KeymasterHi Richard!
To get the filterbar to be on the top instead of the side, navigate to Events > Settings > Filters tab. At the bottom of the page is a setting called “Filters Layout.” Select “Horizontal.”
The card view you see on the example site is just using the “photo” view. You will need to have a featured image set for those events, but they should show up in a similar fashion on your site once you add some events.
Let me know if this helped.
Thanks,
SkySky
KeymasterAlina,
I’m sorry to hear that you’re having issues with the mini calendar shortcode. I will try to help figure out the problem.
I’m running version 4.4.23, and I was able to see the list of events below the calendar when adding a category to the shortcode. Can you provide a link to where this is occurring, and a screenshot or copy/paste of the shortcode you are using?
Thanks,
SkyFebruary 28, 2018 at 10:26 am in reply to: Conflict between Events Calendar Pro 4.4.23 and Advanced Post Manager 4.4 #1466242Sky
KeymasterHi Frank,
I’m sorry to hear that you’re having an issue with the Advanced Post Manager. I will try to help sort it out.
Could you explain in more detail what you mean that it is not displaying certain fields? Are you referring to the active filters or active columns? Can you provide screenshots of the differences you are seeing in the two versions?
Thanks,
SkySky
KeymasterHi Cordes,
I’m sorry to hear of your frustration with the import process. I will try to help find the information you need.
The ticket is connected to the event via a post meta key that contains the event ID. The name of the meta field is “_tribe_eddticket_for_event”
Let me know if this helps.
Thanks,
SkyFebruary 28, 2018 at 9:55 am in reply to: Create Events without login/Admin Approval/Anonymous user can edit their event. #1466214Sky
KeymasterHi Nghi!
Thanks for reaching out to us! I’d be happy to help with your question.
Our Community Events plugin allows users to create an event without logging in, and the option for the event to need approval before being added to the calendar. However, for them to be able to edit the event requires them to create a user and login.
Let me know if this helps, or if you have any other questions.
Thanks,
SkySky
KeymasterKevin,
Thanks for reaching out to us! I’d be happy to answer your question.
Using our Events Tickets plugin, you can export a CSV file of Attendees of a specific event. The Events Tickets Plus plugin allows you to create custom fields for the attendees, which is then included in the attendee export. This could certainly be imported as a Google spreadsheet.
You can read more about Events Tickets Plus here: https://theeventscalendar.com/product/wordpress-event-tickets-plus/
Let me know if that helps, or if you have any other questions.
Thanks,
SkySky
KeymasterJohn,
Great, glad I could help!
Please let us know if you have any other questions or issues in the future.
Take care,
SkyFebruary 28, 2018 at 9:31 am in reply to: Custom "add columns" function for CSV export is preventing export #1466201Sky
KeymasterPenny,
Thank you for the additional details. There is not an easy way to break the attendees export into chunks. I think investigating the reason for the export slowing down and failing may be the way to go here.
I am limited in the amount of support I can provide for customizations, but I will try to help if I can.
Can you enable WP_DEBUG and WP_DEBUG_LOG as is described here. Once enabled, navigate to the attendees page on one of the events you are having issues with, and attempt an export.
If there are any errors being generated, a file named “debug.log” should be created in your wp-content folder. Can you please upload the contents of this file here? If it is lengthy, please upload as a plain text file.
Thanks,
SkySky
KeymasterKellsey,
They are just “Notices” so probably safe to ignore.
Take care,
SkyFebruary 28, 2018 at 9:15 am in reply to: Filter bar not showing results for bulk edited events #1466194Sky
KeymasterChris,
You could try something like that, but I’m not sure that it will work or if it will have any unintended consequences.
If you’re willing to give it a shot, I can create a snippet that would do so, with no guarantees. I’d recommend making a backup of your site first, in case something goes awry.
Try adding this to your functions.php and visit the site once. Don’t forget to remove once you’re done.
add_action('init','example_event_save_all');
function example_event_save_all(){
$my_posts = get_posts( array('post_type' => 'tribe_events' ) );
foreach ( $my_posts as $my_post ):
wp_update_post( $my_post );
endforeach;
}
Let me know if that works!
Thanks,
SkySky
KeymasterHi Ramona!
Out of the box the Events Calendar does not have any integrations like that. However, if you are using WooCommerce in conjunction with our Events Tickets Plus plugin, there are WooCommerce integrations available for both of those services. I have not used any of them personally, so I couldn’t make a recommendation or tell you how the integration extends to Events and Tickets.
I’m sorry I don’t have any more specific information, but you may be able to find more by searching with the woocommerce keyword.
Thanks, and let us know if you have any other questions.
SkyFebruary 27, 2018 at 9:54 am in reply to: Display the attendee information form on the checkout page? (Event Tickets Plus) #1465079Sky
KeymasterHi Tomas,
The attendee form will only show on single events/posts etc that are associated with the tickets in the settings. It may be possible to create a custom solution to achieve that, but unfortunately that is beyond the scope of support I can provide.
If you are interested in pursuing this, you can check out this forum post with more of the technical details involved.
Thanks, and let me know if you have any other questions.
SkySky
KeymasterHi Deanna!
Thanks for reaching out to us! I would be happy to answer your question.
When using the Events Calendar Pro, you have access to a number of shortcodes, which allow to specify the date range. You can read more about the shortcodes here.
So yes, this is possible.
Thanks, and let us know if you have any other questions.
SkySky
KeymasterHi John,
Thanks for reaching out to us! I will try to help with this.
It sounds like your current solution may be the most straightforward, though it sounds like a lot of extra work when you have that many separate widgets to create.
The calendar widget views can be recreated outside of widget areas using shortcodes, as is described here. These shortcodes can be configured to display a particular category. You could create a custom page template that passed the desired category into the shortcode programmatically, and it would show a different calendar on each page. The question would be how to associate each page with the proper category for the events to show.
All of that is to say, it is possible, but only with some customization. Unfortunately, I am limited in how much support I can provide for customizations such as this. If you are feeling adventurous, I could help point you in the right direction. But this is something a PHP developer would have to put together for you.
Let me know if this helped at all, or if you have any other questions.
Thanks,
Sky -
AuthorPosts
