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. Thanks!
September 30, 2014 at 9:16 am in reply to: Eventbrite ideas + Copy event picture through Eventbrite extension #778413Geoff
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. Thanks!
Cheers!
GeoffGeoff
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. Thanks!
Geoff
MemberHi there, Marta! Thanks for the offer. That’s really awesome of you and we appreciate it. š
Would you mind contacting us by email at pro [at] tri.be? We can have a better dialogue there than we can in the support forum.
If you have any questions about any of the features included in PRO and WooTickets, please let us know–we’d be happy to answer them. š
Thanks!
GeoffGeoff
MemberHi there, Dirk! Thanks for getting in touch. These are great questions, so let’s hit them one at a time. š
1. Is it possible to manually add a ticket in the backend after a user added an event? (And can this be done in the āedit eventā part of the backend?
Yes, it is possible to add tickets to an event after it has been submitted by a user. You’re correct: you would do it on the back end. In fact, when you try adding a ticket to an event that was submitted by Community, it will remind you that you are editing a Community event and ask whether you’re sure you want to add tickets to it (screenshot).
2. Can the users still view and electronically check-in guests? And can this be done in the front-end?
Checking in through the front end is a feature we don’t currently support. It’s been suggested on our UserVoice page, though, and I’d suggest adding your vote if you’re interested in seeing it included in an upcoming release. I definitely see the value in that feature!
Does this help answer your questions? Please let me know. š
Cheers!
GeoffGeoff
MemberHi there Mads! Thanks for getting in touch and welcome to the forum. š
Great questions. Let’s see if we can tackle them one at a time.
1) When I choose monthly view (āMĆ„nedā), the event names arenāt shown on the appropriate dates. Instead there is just a black dot on the dates with events.
The calendar has a responsive layout that changes the event titles to black dots on smaller screens. The calendar thinks it’s on a small screen because it is squeezed next to the sidebar to the right of it. You can change the breakpoint for where the calendar changes to small-screen mode by adding something like this to yourĀ functions.php file:
add_filter(‘tribe_events_mobile_breakpoint’, ‘my_tribe_events_mobile_breakpoint’, 768);
Of course, change the 768 to a pixel value that works best with your layout.
2) Can I remove the ā+ Google Mapsā links from the list view?
Yes, that should be possible. Again, you’ll probably want to write a function to remove it from that specific view. TheĀ tribe_get_map_link() function should get you what you’re looking for since it performs the Google Map URL for a given event.
3) On the individual event pages, can I remove the link to the prev/next events?
Absolutely. I would recommend creating a theme override for theĀ single-event.php template and remove the navigation block that contains those links. If you’re new to theme overrides, I’d check out our Themer’s Guide, which will walk you through how to customize templates.Ā Sorry, I can’t do the customization for you, but that should point you in the right direction.
4) On the individual event pages, can I configure the plugin so the location name isnāt a link?
I’d suggest the same tactic as #2, but work with theĀ tribe_get_venue_link() function instead. Setting this to “false” for the single event view will get you what you’re looking for.
5)Ā It would be nice if there was a link to both the all events page and the relevant category pages (like āAll eventsā -> āParent categoryā -> āCategoryā), i.e. just like the standard WP category breadcrumbs.
That’s a great idea. While that’s not something that comes out of the box, there is a link to the event category in the details box in the single event view. However, I get what you’re saying that it would be nice to have it be included in the navigation. That’s not currently a feature we support, but you could certainly continue customizing theĀ single-event.phpĀ template and use theĀ tribe_meta_event_category_name() function to display the event category where you like it to appear.
Did I help answer all your questions? Please let me know. š
Cheers!
GeoffGeoff
MemberMy pleasure, Marian! Thanks for following up. I wish we could pin down the exact issue, but I’m glad the standard event template works.
I’m going to go ahead and close this thread, but please feel free to open a new one if any other questions pop up and we’d be happy to help. š
Cheers!
GeoffGeoff
MemberHi Paul, so glad the list is working! Great job getting that rolling. š
We’d be happy to give you some names of freelancers who may be able to help with the customization. Send us an email at pro [at] tri.be and we’ll give you a list. You can reference this thread when getting in touch.
In the meantime, I’m going to close this thread but please don’t hesitate to open a new one if any other questions pop up. We’re happy to help. š
Cheers!
GeoffGeoff
MemberAh, now I see what you’re saying. I see the same issue pop up when users are not allowed to edit their submissions.
That’s definitely a bug on our end, so thanks for brining it up. I’ve logged a ticket to have that fixed in an upcoming release. Although I can’t promise a specific timetable for when it will be fixed, we will follow up with you in this thread when it is.
Thanks again for helping us find this! I’m going to close this thread in the meantime, but will follow up when there’s more to report.
Cheers!
GeoffGeoff
MemberAwesome, I’m so glad you were able to get the widget area going. Great work!
Check out the Events List widget. It sounds like you might be using the Events Calendar widget instead, which uses the full calendar layout. š
Getting the images to display in the list will take a fair bit of customization. Unfortunately, I’m unable to do the custom work for you, but basically you’ll be creating a theme override of theĀ widgets/list-widget.php template and adding the default WordPressĀ get_the_post_thumbnailĀ function inside the loop where you would like the image to display. If you haven’t created a theme override before, I’d suggest heading over to our Themer’s Guide for more information, including step-by-step instructions for overriding plugin templates.
Does that help point you in the right direction? Please let me know.
Cheers!
GeoffGeoff
MemberThanks for the heads up, spotstudio! Sounds like that could be an effective way to go as far as bundling products together.
I’m going to go ahead and close this thread since it seems we’ve covered the original topic, but please feel free to hit us back up if any other questions pop up. š
Cheers!
GeoffGeoff
MemberHi there Gianpiero,
Great work getting theĀ tribe_events post type into your query. š
You might be interested in checking out our tutorial on using theĀ tribe_get_events() function. This will give you all the flexibility you’re looking for, plus it includes an example of how to work with dates in the query. In short, you can use the arguments for start_date and end_date in your query, or even echo theĀ <i>tribe_get_start_dateĀ </i>andĀ <i>tribe_get_end_date</i> as needed.
Will that work for you? Please let me know.
Cheers!
GeoffSeptember 29, 2014 at 9:00 am in reply to: Week view – How to avoid scrolling through a.m. hours? #775885Geoff
MemberHi there Jennifer, thanks for getting in touch!
Great question. Yes, you can set the End of Day Cutoff, which will move where the Week View starts it display. You can do that in Events > Settings > General Setting in the “End of day cutoff” dropdown.
Will that work for you? Please let me know.
Cheers!
GeoffGeoff
MemberHi there Vince, welcome to the forums! š
Try using this snippet in yourĀ functions.php file. You’ll want to customize it where applicable, but it will allow you to change all title instances without touching the core plugin.
Will that work for you? Please let me know.
Cheers!
GeoffSeptember 29, 2014 at 8:20 am in reply to: change events calendar form background from default grey to #a1c3d9 #775814Geoff
MemberAwesome, so glad that helped! Thanks for confirming the answer and please don’t hesitate to hit us up if any other questions pop up. š
Cheers!
Geoff -
AuthorPosts
