Forum Replies Created
-
AuthorPosts
-
March 8, 2013 at 4:18 pm in reply to: How i can restric the date selection to only current month and next month #42067
Jonah
ParticipantHi Stephen, you could do this by simply hiding or removing the month/year drop downs and nav. To hide, simply add the following CSS to your theme’s style.css file:
.tribe-events-month-nav {
display: none;
}
To remove, make a copy of /wp-content/plugins/the-events-calendar/views/gridview.php and place in an ‘events’ folder in your theme. Then open it up and remove lines 17-31.I hope that helps but let me know if you need anything else.
– Jonah
March 8, 2013 at 4:15 pm in reply to: In Calendar Window Hover Over An Event-How do I show the venue name as well? #42066Jonah
ParticipantHi lagraphix,
In order to do this you’ll need to first make a copy of /wp-content/plugins/the-events-calendar/views/table.php and place in an ‘events’ folder in your theme. Then around say line 135 create a new line and paste in this code: http://snippi.com/s/mmz5quu
Does that work?
– Jonah
Jonah
ParticipantHi Jacci,
It looks like you’ve got some CSS issues that are messing with things. I see some custom CSS you’ve added (or someone else has) that is putting a 150px margin on either side of the calendar (the #tribe-events-content div to be specific). This needs to be removed so the calendar is full width. There may be some other things but that’s one of the most obvious. This is nothing the update would have done, it must be something else that changed that prevented these issues from showing before.
As for getting the calendar on the home page, the only way to do this is with a PHP include that you place somewhere in your theme’s templates (probably page.php) like so:
include('wp-content/plugins/the-events-calendar/views/gridview.php');
I hope that helps but let me know if you need anything else!– Jonah
Jonah
ParticipantUnfortunately not. It should be soon though…
March 8, 2013 at 2:38 pm in reply to: Next Event Widget is displaying Events that have already passed. #42056Jonah
ParticipantHi Scott,
Glad to hear that works for now! If there’s anything else you need help with, please let us know.
Regards,
JonahJonah
ParticipantYou’re welcome Kim, I’m glad you got it working. Let us know if there’s anything else you need help with.
Regards,
JonahJonah
ParticipantNo problem gregwiley, if there’s anything else you need help with just let us know.
Regards,
JonahJonah
ParticipantGlad to hear that helped Michael. If there’s anything else you need, just let us know. If you feel inspired we’d sure appreciate a review here: http://wordpress.org/support/view/plugin-reviews/the-events-calendar
Thanks,
JonahJonah
ParticipantHi Daniella,
It will be out soon but we have no public ETA. It does contain a fix for duplicate Venues.
Thanks,
JonahMarch 7, 2013 at 1:41 pm in reply to: Making the calendar grid view or mini-calendar show specific categories. #41927Jonah
ParticipantSounds good Kim, thanks, Jonah
Jonah
ParticipantHi Jens,
No, nothing new. I would still need you to try deactivating other plugins and/or reverting the theme to see if that helps. Otherwise, I have no idea where the problem lies.
Thanks,
JonahJonah
ParticipantHi Michael,
Sure thing. Here’s a gist with a custom query using some different options: https://gist.github.com/jo-snips/5112025 – feel free to modify or remove whatever you don’t need. For reference on what else you can do with the query, I suggest taking a look at the WP_Query doco: https://codex.wordpress.org/Class_Reference/WP_Query
I hope that helps!
– Jonah
Jonah
ParticipantHi curtmaddon,
What do you mean it broke the plugin? What happened?
– Jonah
Jonah
ParticipantHey Kim, you should just be able to pass in a category ID like Duncan mentions here “For templates, you can use: tribe_calendar_mini_grid($mini_cat = ”); and insert the category ID number inside the quotes.”. So just do $mini_cat = “1” (or whatever your category ID is) and it should work.
– Jonah
Jonah
ParticipantHi Michael,
If you setup a page with a custom query using tribe_get_events() or WP_Query pagination should be completely in your control. WP_Query might work a little bit better for something like this though.
Does that answer your questions?
– Jonah
-
AuthorPosts
