Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Craig,
re: the idiot proof date picker – I’m not really sure what the best approach to make this more user friendly for end users would be but am open to suggestions. One suggestion you could implement is integrating a fancybox or lightbox style popup and put little help icons linking to quick tutorials you put together.
I hope that helps!
– Jonah
May 21, 2012 at 10:01 pm in reply to: Tribe_get_events malfunctioning when using transients API #19514Jonah
ParticipantHey Jesse, not quite sure why your example is not working but I got transients to work this way: https://gist.github.com/2766720
I went off of this example for reference: http://www.wpbeginner.com/wp-tutorials/speed-up-your-wordpress-by-caching-custom-queries-using-transients-api/
So it appears to be working… Can you try refactoring your code based off of my example and let me know whether that works?
Thanks,
JonahJonah
ParticipantHey Javier, if you can send me a copy of YooTheme for evaluation I can test things out and see what I can find for you. You can email to: jonah [at] tri [dot] be
Thanks,
JonahJonah
ParticipantSo did that fix it Meg? Let us know if you need anything else with this.
Jonah
ParticipantHi Simon, sorry to hear about this. Have you tried deactivating all other plugins and/or switching your theme to see if there is a conflict going on?
Jonah
ParticipantGlad to hear Christian, let us know if you need anything else!
Jonah
ParticipantYou can use is_tax to check for specific taxonomies and apply conditional code that way:
if(is_tax( 'tribe_events_cat', 'Your Category Name' )) {
//do this
}
Jonah
ParticipantHey Jim,
I would probably go with a custom page template based off of the page.php template simply because it will contain similar code to your theme and it won’t interfere with your page.php template keeping things more organized.
Good luck!
– Jonah
Jonah
ParticipantWell, your query does get the next 5 upcoming events so I’m still not sure what the problem is… Care to elaborate?
Jonah
ParticipantSorry that code came out crappy. Try this: https://gist.github.com/2019513
Jonah
ParticipantHey Max,
1. Any of your event categories will be accessible via: http://www.yoururl.com/{events_slug}/category/{category_slug}/ – you can create links to these from the WordPress custom menus pages or manually.
2. Unfortunately this is not easy to do. For now I would suggest trying to rewrite your URL’s via PHP, plugin or .htaccess if you need this…
3. If you need to echo all categories you could use something like:
$terms = get_terms("tribe_events_cat");
$count = count($terms);
if ( $count > 0 ){
echo "";
foreach ( $terms as $term ) {
echo "slug . "'>" . $term->name . "";}
echo "";
}
I hope that helps but let me know if you need anything else.
Cheers,
JonahJonah
ParticipantHey Christian,
Go to Settings > General and find the “Week Starts On” option towards the bottom and set that to Sunday.
That should do it!
Cheers,
JonahMay 21, 2012 at 11:09 am in reply to: Allowing Users to Subscribe to Calendar for Google Calendar, iCAL, Outlook? #19460Jonah
ParticipantHi Maxwell,
Yes! Have you seen the buttons at the bottom of the calendar for Google Calendar and iCal subscribing?
Cheers,
JonahJonah
Participant@Andy, thanks for the solution!
@Kevin, so are you all set with this now? Can I close the thread?
-
AuthorPosts
