Forum Replies Created
-
AuthorPosts
-
Geoff
MemberMy pleasure, Eirik! Thanks for marking the question as answered. I’m so glad that helped.
I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi there, John! Thanks for getting in touch and welcome to the forums. We hope you’re enjoying the plugins so far. 🙂
Do you have a link you’re comfortable sharing? It’d be super helpful to see a live version of what you’re trying to solve. If it helps, you can provide it with a private reply.
Cheers!
GeoffGeoff
MemberHi there, Artem! Thanks for getting in touch and welcome to the forums. We hope you’re enjoying the plugins so far. 🙂
Great questions. Let’s see if we can tackle them one at a time.
1) I have a category of events – birthdays, holidays – which I’d like to show ONLY in list widget close to the footer of site (so they can be invisible in main calendar page, and calendar-widget). My calendar, and mini-calendar widget consists of business events – so i dont want to mix them with holidays. Is it possible?
If I’m following you correctly, you want to exclude certain categories in the main calendar and show them in the footer using the Event List widget instead.
Excluding categories from the main calendar is possible, but will take some custom development on your end. Here is a snippet that might help you do that.
The Event List widget does give you the ability to filter which events to display based on category. If you head over to your Appearance > Widgets settings and place the Events List widget in your footer sidebar, you can set the filters in the settings for that widget. Here’s a screenshot of what you’ll look for. By the way, it does accept multiple filters. 🙂
2) Sometimes one day in calendar have more than 10 events, but in calendar-widget user can see only five. Can i change this quantity, or for example make a link to current day? (ex: see all events ..). Not all users so smart to click on main calendar link to see all events ))
You could force the widget to show more than 10 events at a time by adding this snippet to your theme’s functions.php file. This increases the number to 15, but you can change the snippet to any number you want. Note that the options in your widget settings will still say 10, even though you are forcing it to show more.
Does this help answer your questions? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHi there, Ran! Welcome back to the forums. Nice to see you again. 🙂
Another great question. Just want to note that we’re limited to how much we can help with custom development like this, but let’s see if we can at least get you started in the right place.
It sounds like you’ve already found a way to call custom fields from BuddyPress. The next thing you might want to do is set up a theme override (more on this in our Themer’s Guide) for the calendar template you are using, then create a custom query for Events posts using tribe_get_events() or simply the default get_posts() in WordPress. You can change the “category” parameter in either query to the BuddyPress custom fields you want them to output.
Sorry I don’t have a concrete solution for you, but I hope this helps point you in the right direction. 🙂
Cheers!
GeoffGeoff
MemberHi there, Eirik! Thanks for getting in touch. 🙂
Sure thing. Please email our sales team at pro [at] tri.be with a copy of the receipt from your purchase and we’d be happy to help you out with a refund so you can grab the Evenbrite plugin instead.
Cheers!
GeoffGeoff
MemberThanks for chiming in, musician4you! that sounds like a solid solution. Will that work for you, hmendez?
I do want to note that this is a customization to a WooCommerce template and function and referring to their documentation might be a more solid starting point.
That said, you might also consider using the literal URL of your Events page as well (e.g. /events) instead of a PHP function.
Cheers!
GeoffGeoff
MemberHi there, Ran! Thanks for getting in touch. 🙂
Great question. I do want to note first of all, though, that we are fairly limited in terms of helping out with custom development questions like this one. That said, we’d love to point you in the right direction if we can.
Venues are registered as custom taxonomies (tribe_venues), so I would imagine you are able to extend them to other post types when registering them. From there, you can use the tribe_get_venues() function to call the list of available venues in your filter.
Does that make sense? Will that work for you? Please let me know.
Cheers!
GeoffGeoff
MemberHi there, Cindy, and thanks for getting in touch.
We’re sorry that the lack of accepting PayPal created a barrier that prevented you from purchasing the plugin. I can see how that would have been frustrating to find out in the middle of checking out.
This is a support forum for issues related to the plugins, but if you would like to contact our sales team at pro [at] tri.be, they may be able to help you with the purchase.
Sorry for the trouble but thanks for your sending us your feedback. I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help.
Geoff
Geoff
MemberHi there and thanks for getting in touch!
Good question. The plugin does not support discounts right out of the box. In fact, ticket transactions are handled by the eCommerce platform it is integrated with. For example. if you are using our WooTickets plugin, then WooCommerce is the plugin that manages the payments and would be where you would possibly be able to support special discounting options.
Does that make sense? Will that work for you? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHi there, Dee! Thanks for getting in touch. 🙂
Good question and–yes–this is definitely possible with the PRO version of the plugin.
PRO supports recurring events, which you set to any pattern. For example, if you want to create an event for a course that repeats daily, Monday through Friday, it certainly supports that.
You can also edit individual events inside a recurring series. This would be helpful for indicating the Monday and Tuesday exams you mentioned.
Also, just a quick note that it is also possible to rename “Events” to “Courses” throughout the plugin with a little custom work. Here’s a handy tutorial on how to do that.
Does this help answer your question? Please let me know. 🙂
Cheers!
GeoffNovember 17, 2014 at 8:06 am in reply to: Is it possible to customise the of Events page with WooTickets? #887769Geoff
MemberHi there, Anne! Thanks for following up. 🙂
Yes, we do have a full refund policy, as long as it’s within 30 days and you provide the receipt from your purchase. That should help give you a chance to test drive the ticket functionality to see if it will work for you.
Thanks for confirming the answer. I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberHi there, James! Thanks for getting in touch and welcome back to the forums. 🙂
Great question. I do want to note first of all, though, that we are fairly limited in terms of helping out with custom development questions like this one. That said, we’d love to point you in the right direction if we can.
One idea would be to use use a theme override (see more on this in our Themer’s Guide) of the list.php template and use a conditional statement like this to create a new events query for past events:
if tribe_is_past() { // Run your query }You can use tribe_get_events() to run your query and set the parameters to display past events in descending order. That might look something like this:
$events = tribe_get_events( array( 'eventDisplay' => 'past', 'order' => 'DESC', ) );There’s a lot more detail on using tribe_get_events() here, including some handy examples. 🙂
Does that make sense? Will that work for you? Please let me know.
Cheers!
GeoffGeoff
MemberThanks for following up and confirming the answer! I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberThanks for following up and confirming the answer! I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. 🙂
Cheers!
GeoffGeoff
MemberShoot, sorry that didn’t seem to do the trick. I’ll continue to leave this thread open a while longer for you.
Cheers!
Geoff -
AuthorPosts
