Forum Replies Created
-
AuthorPosts
-
Geoff
MemberHey there! 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 a new thread and we’ll help you out.
Cheers!
GeoffGeoff
MemberHi there Ron!
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 a new thread and we’ll help you out. Thanks!
Cheers!
GeoffOctober 9, 2014 at 9:36 am in reply to: Multiple Calendar links with different sets of categories #798895Geoff
MemberHi there, Melissa! Thanks for getting in touch and welcome to the forums. We hope you’re enjoying the plugins so far. 🙂
You’re definitely on the right track. Each category has its own unique URL that can be linked to directly. For example, a category called “Birthday” can be linked to at: [your-site]/events/category/birthday.
It’s definitely possible to exclude specific categories from the Month view with a little customization. Try adding this to your theme’s functions.php file, where “category-1” and “category-2” are the categories you want to exclude:
add_action( 'pre_get_posts', 'exclude_events_category' ); function exclude_events_category( $query ) { if ( $query->query_vars['eventDisplay'] == 'upcoming' && !is_tax(TribeEvents::TAXONOMY) || $query->query_vars['eventDisplay'] == 'month' && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'tax_query', array( array( 'taxonomy' => TribeEvents::TAXONOMY, 'field' => 'slug', 'terms' => array(‘category1’, <code>category-2</code>), 'operator' => 'NOT IN' ) ) ); } return $query; }Does that make sense? Will that work for you? Please let me know.
Cheers!
GeoffGeoff
MemberWill do, Tara. Thanks for the heads up and we’ll be keeping an eye out for a new thread.
Cheers!
GeoffGeoff
MemberHi there Joshua,
I would suggest making a backup of your Event Calendar plugin, then attempting the upgrade. If something goes awry, you can always re-install the backup to have things g back to how they were.
As an added precaution, I also suggest following the WordPress guide for backing up your site and database whenever doing updates of any size or scale. Always better safe than sorry. 🙂
Does this helps answer your question? Please let me know.
Cheers!
GeoffGeoff
MemberHi there Mindy! Thanks for getting in touch and sorry you’re hitting a little trouble here, but hopefully we can figure it out together. 🙂
Do you have any upcoming events past October? The Next Month link will automatically hide if no future events are scheduled. For example, I see no events through January 2015:
- November: http://www.carrellblanton.com/seminars/2014-11/
- December: http://www.carrellblanton.com/seminars/2014-12/
- January: http://www.carrellblanton.com/seminars/2015-01/
Is that the case for you? Please let me know.
Cheers!
GeoffGeoff
MemberHey there Ross, thanks for getting in touch!
Great question. Canvas and Uno are both developed by WooThemes, so those should play nicely together and with WooCommerce as well. Score!
WooTickets builds right on top of WooCommerce by allowing you to create, add and manage tickets directly from an event editing screen. Those tickets get added as Products in WooCommerce in their own Tickets category. Another score!
Stripe is a very developer-friendly payment gateway, and I see WooCommerce offers a simple integration for it as well. That sounds very promising.
I can’t speak directly for the themes or for Stripe, but what you’re describing sounds like a solid lineup. What I can speak for is that WooTickets will integrate nicely with WooCommerce for ticket creation and management. I think you’ll love it. 🙂
Does this help answer your question? Please let me know.
Cheers!
GeoffGeoff
MemberHi there, Janis! Thanks for getting in touch and for your interest in our plugins. 🙂
Great question. WooTickets will allow you to create multiple ticket types for each event and allow customers to purchase multiple tickets (both quantity and variations) per transaction. However, the tickets will still be “assigned” to the purchaser, though anyone can bring the ticket to the event and check-in against the quantity that the customer purchased.
I hear exactly what you’re asking for and we have something planned for a future release that would allow you to take in more information when multiple tickets are purchased in the same transaction. Unfortunately, I don’t have a timeframe for that to be released, but stay tuned. 🙂
Does this help answer your question? Please let me know.
Cheers!
GeoffOctober 9, 2014 at 7:55 am in reply to: Header / Title appearing in List view comprised of Event Names #798676Geoff
MemberHey there Brent, thanks for chiming in! You’re welcome to email us at [email protected] and we’d be happy to share a list of people who may be able to help you out with your plugin customizations.
Cheers!
GeoffGeoff
MemberAwesome! Keep me posted. 🙂
Geoff
MemberHi there, Phil!
Great question. Try using this snippet in your functions.php file to exclude events in the “Results” category from displaying in the Month View:
add_action( 'pre_get_posts', 'exclude_events_category' ); function exclude_events_category( $query ) { if ( $query->query_vars['eventDisplay'] == 'upcoming' && !is_tax(TribeEvents::TAXONOMY) || $query->query_vars['eventDisplay'] == 'month' && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'tax_query', array( array( 'taxonomy' => TribeEvents::TAXONOMY, 'field' => 'slug', 'terms' => array('results'), 'operator' => 'NOT IN' ) ) ); } return $query; }If you’re looking to remove the Category label from the top of the calendar, you can do that in the CSS:
li.tribe-events-category-14 { display: none; }Does this help answer your question? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHi there Matt!
Great question. Multiple price levels isn’t something that is supported in the Cost Field. However, you can add a range in the Event Cost field. Doing so will strip out the currency symbol, but you can add that in the field manually. Here’s a screenshot what how that would work.
Will that work for you? Please let me know.
Cheers!
GeoffGeoff
MemberThanks for clarifying, Joseph! It’s greatly appreciated. 🙂
The first thing I would suggest is checking that the option to include events in the main blog loop is disabled. You can do that in Events > Settings (screenshot). Hopefully that will separate News posts from Events posts.
Otherwise, I suspect there may be a theme conflict at play. Could you try temporarily activating the default Twenty Thirteen theme, to see if the issue happens there as well?
If disabling the theme fixes it, that’s good news! It means we have narrowed the issue down to a theme conflict.
If the issue is still there when using the default Twenty Thirteen theme, then we can try testing for conflicts with other installed plugins. Using the Twenty Thirteen, please try deactivating all of your plugins, except for the ones from Modern Tribe. Does that solve the problem? If so, reactivate the plugins one at a time until the issue pops back up, then tell me which one was causing the issue.
These steps are also outlined here if you want some more details on how to test for conflicts.
Give those steps a shot and let me know what you find.
Cheers!
GeoffGeoff
MemberYes, you can definitely download a previous version of the plugin. Just log into your account on this site, head up to the main menu and select Account Central > Downloads. You can download any previous version of the premium plugins there, and any version of the free version here.
Cheers!
GeoffGeoff
MemberThanks, Calum! We totally agree. If you have a moment, would you add your vote for that feature to our UserVoice page? That’s where we track popular ideas to include in future releases. We’d love your vote!
Dirk, if there’s been any further update or if you still need assistance on this one just let me know. 🙂
Cheers!
Geoff -
AuthorPosts
