Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Tom,
The first thing you should do is update to the latest version of the plugin which is 2.0.7. Try that first and let me know if you’re still having issues.
Thanks,
JonahJuly 12, 2012 at 12:39 pm in reply to: Calendar Page not displaying same Navigation as the rest of the site #22022Jonah
ParticipantHi Sammy,
We have some bugs with the plugin interfering with the site navigation when pretty permalinks are not enabled. Can you try turning permalinks on by going to Settings > Permalinks and setting them to Postname?
Let me know whether or not that helps.
– Jonah
Jonah
ParticipantHi Joseph, all you need to do is add a featured image for your event(s) and the thumbnail should automatically appear in the tooltip. Have you tried that?
– Jonah
Jonah
Participant@Andrew, also be sure to check out this tutorial on fully customizing the widgets: https://theeventscalendar.com/how-to-completely-customize-widgets/
– Jonah
Jonah
ParticipantHi Krysia,
Glad that worked! Let us know if you need anything else.
– Jonah
Jonah
ParticipantHi Kenny,
You can only embed the calendar via PHP code, we don’t have any shortcodes. So, you’ll want to somehow get this code into your theme’s single.php file (for single posts) and limit it to only the specific posts you want via conditionals. The embeds you can use are the following:
include('wp-content/plugins/the-events-calendar/views/table.php');
…or…
include('wp-content/plugins/the-events-calendar/views/gridview.php');
Then, to filter out specific categories you’ll want to use the following in your theme’s functions.php file:
add_action( 'pre_get_posts', 'exclude_events_category' );
function exclude_events_category( $query ) {
if ( is_single('your-single-post') ) {
$query->set( 'tax_query', array(
array(
'taxonomy' => TribeEvents::TAXONOMY,
'field' => 'slug',
'terms' => array('2012'),
'operator' => 'IN'
)
)
);
}
return $query;
}
Change ‘your-single-post’ to whatever it is and the terms parameter to whatever category you want to include or exclude.I hope that helps!
– Jonah
Jonah
ParticipantGlad to hear Mark! Let us know if you need anything else.
Cheers,
JonahJonah
ParticipantHi Joe,
I’m not sure why this isn’t working for you, it seems to work ok for me. I don’t get taken back to the top of the page when it finishes loading in Chrome. Unfortunately we can’t help with this type of thing. Good luck!
– Jonah
Jonah
ParticipantHi Krysia,
To modify page titles in your theme you’ll want to find wherever the_title() is called. It’s going to either be in header.php, page.php or via your functions.php file. Once you’ve found where the titles are output you can add the category name like so:
if( tribe_is_event() && !tribe_is_day() && !is_single() && is_tax() ) { // Events List Category Pages
echo 'Events Calendar' . ' » ' . single_term_title('', false);
}
I hope that helps!– Jonah
Jonah
ParticipantHi Joe,
I doubt our plugin is doing this. Have you tried deactivating all other plugins to see if there’s another plugin causing the problem? Or, try switching to the Twenty Eleven theme to see if it’s a problem with your theme.
I hope this helps!
– Jonah
Jonah
ParticipantHi Karen,
We don’t have any built in facility for this but you could certainly use a third party plugin to help you duplicate events: http://wordpress.org/extend/plugins/duplicate-post/
I hope that helps!
– Jonah
July 11, 2012 at 4:05 pm in reply to: Next/Previous Month arrows in widget view don't go anywhere #21968Jonah
ParticipantHi Vivek,
Since you said the arrows worked in the Twenty Eleven theme, there must be something in your theme that is conflicting with this functionality. Want to send us a copy of your theme and we’ll see what we can figure out? You can email to pro [at] tri [dot] be and please reference this thread in the email.
Thanks,
JonahJonah
ParticipantHey Carter,
Glad to hear you got it worked out! Let us know if you need anything else.
Cheers,
JonahJuly 11, 2012 at 8:28 am in reply to: Today’s events code shows today’s and tomorrow’s events #21952Jonah
ParticipantHi Richard,
I haven’t been able to reproduce this yet and I’ve tried switching around the times of the event on the next day to try and “break” the query and get the 2nd event to show. I haven’t tried looking at it specifically at 8pm but will do so as soon as I can. Can you please try deactivating all other plugins and switching to the Twenty Eleven theme to rule out a conflict with another query somewhere else?
Thanks,
JonahJonah
ParticipantHi Vivek,
Glad to hear that worked! Let us know if you need anything else.
Cheers,
Jonah -
AuthorPosts
