Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Frank,
Yes, you can make it so it shows two events. To do this it’s somewhat complicated but I’ve written a tutorial on it that can guide you through: https://theeventscalendar.com/how-to-completely-customize-widgets/
The tutorial deals with the same widget and all you’ll need to change is the query parameter here from:
$posts = tribe_get_events( 'eventDisplay=upcoming&numResults=1&eventCat=' . $category );
…to:
$posts = tribe_get_events( 'eventDisplay=upcoming&numResults=2&eventCat=' . $category );
I hope that helps!
– Jonah
Jonah
ParticipantHi Bob,
Something sounds fishy here. Were you ever running any other event related plugin? It could be that that plugin, after removing it, did not delete all it’s data. Other things to check are:
1. Are you running the latest version of WordPress.
2. Are you running the latest versions of our plugins (2.0.6)
3. Have you tried deactivating all other plugins to rule out a conflict?
4. Have you tried reverting to the Twenty Eleven theme to see if it’s something with your theme?Try those steps and let us know what you find.
Thanks,
JonahJonah
ParticipantOk, that’s easy. Just make a copy of /wp-content/plugins/the-events-calendar/views/single.php and place in an ‘events’ folder in your theme. Then, find line 34 that has this code:
tribe_meta_event_cats();
…and remove that (including the opening and closing PHP tags.That should do it but let me know if you need anything else with this.
Regards,
JonahJonah
ParticipantHi Rough,
For some reason your sidebar is still showing above the calendar. The easiest way to remove the sidebar is to just hide it on this page. You can do this with the following CSS:
.events-gridview .sidebar2 {
display: none;
}
You can add that to your themes style.css file. That should do it but let me know if you need anything else with this.
Regards,
JonahJonah
ParticipantHi Marcos,
I’ve just updated the ticket we’ve got on this issue to hopefully revive tracking down the bug and maybe bump up priority. It would help if you could send us a copy of the theme you are using so we can use that for testing. You can email to jonah [at] tri [dot] be
Unfortunately outside of that there’s not a whole lot else I can do but bring it up with the team in a meeting tomorrow and see if we can focus some more on this.
– Jonah
Jonah
ParticipantHi Charlie, separate calendars are already created by default for any event categories you have. For instance if you have a Conferences category you could go to: http://yoururl.com/events/category/conferences/ (substituting yoururl.com and events with your website URL and your events slug). To get others to that page just simply link to that category calendar page and you’re set. The WordPress custom menus make this really easy.
Does that help?
– Jonah
Jonah
ParticipantHi John,
I still don’t understand – how/why do you have individual calendar pages? How did you create these and how are they different? Some examples/code might be helpful. By default the calendar will show you the main calendar page which should always use “Events for May 2012” as the title tag and change depending on what month you are on. If you are on an event category, the category name will be appended to the title tag.
I still need some more information.
Thanks,
JonahJonah
ParticipantHi Meg,
To get a buy now button in the list just make a copy of /wp-content/plugins/the-events-calendar/views/list.php and place in an ‘events’ folder in your theme and make any changes you want within to add the button.
For the Event List widget you’ll want to modify /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php – again make a copy of this and place in the ‘events’ folder in your theme directory and make any changes you want.
I hope that helps!
Cheers,
– JonahJonah
ParticipantGlad to hear Meg! Let us know if you need anything else.
May 29, 2012 at 10:07 pm in reply to: Can I Hide the Saved Venue and Saved Organizer Drop downs? #19887Jonah
ParticipantHey Ross,
It depends on if you want to just remove the whole Event Location and Event Organizer blocks altogether or need to keep specific fields. Can you be a little more specific about what you want to do?
Thanks,
JonahJonah
Participant@Michelle – I’ve followed up via email so look for my reply there.
@Javier – make sure the code uses single quotes and not apostrophes like so:
add_filter('tribe_get_events_title', 'my_get_events_title');
function my_get_events_title($title){
if( is_tax() ) {
return $title;
} else {
return 'My Title';
}
}
Jonah
ParticipantHi Jeremy, my first question is why even use the Eventbrite addon? I’m not entirely sure why we don’t still allow the main plugins cost field to show with the EB addon activated, but it seems like you don’t even need the EB addon…
Jonah
ParticipantHi Frank,
Unfortunately this is not currently available in the plugin and I’m not sure how to hack it to make it work. I’ve filed a ticked to have this fixed in an upcoming version but for now you’ll need to figure this out on your own.
Sorry I can’t offer up more here.
– Jonah
Jonah
ParticipantHi Marcos, we do still have an outstanding bug that involves this issue and unfortunately no fix yet. Have you tried switching the Events Template option in Settings > The Events Calendar > Template to one of the other options?
– Jonah
May 29, 2012 at 7:39 pm in reply to: Upcoming Events Widget – Can we change the way the time displays? #19875Jonah
ParticipantHi Lydia,
Getting just the time to display is a little more complicated than we can help you with unfortunately. It becomes particularly tricky when events span multiple days because you would need to detect this separately.
I can tell you what you need to edit to get this working though. The code you want to work with is in /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php lines 43-56.
To remove the “All Day” just comment out line 49 like so:
//echo ' ('.__('All Day','tribe-events-calendar-pro').')';
I hope that helps! Sorry I can’t offer up more.
– Jonah
-
AuthorPosts
