Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Sagi, glad you figured it out! Let us know if there’s anything else we can help you with.
Jonah
ParticipantHi Karen,
Ooops left out the bit about the +GoogleCalendar button. Just add:
[css]
.single .ical, .single .gcal-add, .events-single #googlemaps {
display: none;
}
[/css]Jonah
ParticipantHi Vincent,
It sounds like a problem with the Gantry plugin since it’s referencing the error in a file for that plugin (plugins/gantry/admin_functions.php on line 539). I would contact the support through that plugin and see what they can do for you.
Good luck!
JonahJonah
ParticipantIf you are working with WP_Query you should be able to use all parameters available to it. However, I would suggest using the plugin native function tribe_get_events instead because if you’re trying to orderby with WP_Query it’s going to order by the published date and not the date of the events.
To query using tribe_get_events you would do something like this:
global $post;
$all_events = tribe_get_events( array('eventDisplay'=>'all', 'posts_per_page'=>-1) );
foreach($all_events as $post) : setup_postdata($post);
echo '';
the_title();
echo '';if ( has_post_thumbnail() ) {
echo '<a href="';
the_permalink();
} else {
echo the_excerpt();
}
endforeach;
You can change eventDisplay to ‘past’, ‘upcoming’, ‘day’, ‘all’ or ‘month’ and then you can still use all the other parameters available with WP_Query.
Hope that helps,
JonahJonah
ParticipantHi Jason, I assume you’ve got the latest version of the plugin or do tell, what version are you running?
Let me get this straight, you are using a custom page template for both your events calendar page and the single event pages? I don’t fully understand the explanation of your setup. Can you paste in some code samples and/or provide me FTP access so I can take a look? Email them to jonahcoyote [at] gmail [dot] com
– Jonah
December 9, 2011 at 7:28 am in reply to: Is it possible to display the 'featured image' at full height in the event? #12049Jonah
ParticipantYou’re welcome, let us know if there is anything else you need help with.
Jonah
ParticipantHi Sagi,
The only script errors on the page are related to the sharing toolbar at the bottom of your site. Have you tried disabling this?
The events.js is loaded so tooltips should be showing… Do you have any code in your theme that could be conflicting? Have you tried reverting the theme to the base TwentyEleven?
December 8, 2011 at 5:53 pm in reply to: Is it possible to display the 'featured image' at full height in the event? #12036Jonah
ParticipantHi Ashley, you can certainly adjust the image sizes however you want. If you look in single.php we just use the_post_thumbnail() to display the image.
You can either pass in default parameters for sizing, i.e. ‘thumbnail’, ‘medium’, ‘large’, ‘full’. Or, you can add your own sizes via the add_image_size() function in WordPress and then use this size as a parameter.
More details on image sizing in WordPress can be found at: http://codex.wordpress.org/Function_Reference/the_post_thumbnail
Note, if you’re going to modify single.php make sure to do within an ‘events’ folder in your theme so as not to lose your changes when updating.
December 8, 2011 at 5:35 pm in reply to: Organizer heading not displaying on single event page in ECP 2.0.1 #12034Jonah
ParticipantHi Kevin, there’s definitely something strange going on with the tribe_get_organizer_link() function. I’m going to log a ticket to get this cleaned up but in the interim you can remove the conditional tags:
if ( tribe_get_organizer_link( false, false ) ) :
And this will display the organizer header. I don’t think this function was meant to be used as a conditional and that’s what’s causing problems.
Does that help?
Jonah
ParticipantNote, only add the code that’s inside the open/closed bracketed tags – we’re working on getting code highlighting in the forum replies…
Jonah
ParticipantHi Karen,
I can help you with #4 and #5. For #4 you’ll need to make a simple stylesheet addition. In events.css or your themes own stylesheet, add this CSS code:
[css]
#tribe-events-content .ical {
display: none;
}
[/css]For #5 add the following CSS code:
[css]
.single .ical, .events-single #googlemaps {
display: none;
}
[/css]That should do it, let me know if you need anything else with this.
Regards,
JonahJonah
ParticipantHi Terrence,
My first thought would be to add it via jQuery but I don’t know if that’s the best approach. Let me check with some of the other team and get back to you.
Regards,
JonahDecember 7, 2011 at 1:57 pm in reply to: Recurring events Show up in calendar but do not go to the right link. #11956Jonah
ParticipantHi Tim/Louis,
I’ve been able to duplicate this issue in my environment as well. It appears to be a problem when the permalinks are set to the default option. If you set permalinks to any of the other options it seems to fix it. Have you guys tried this? You’ll have nicer links anyway 🙂
But I will go ahead and file this as a bug and we’ll get it fixed ASAP. Thanks for reporting it.
Regards,
JonahJonah
ParticipantHi Hoosier, you should just need to change the width of the div containing the calendar. Right now it’s set to 80% and if I change this to 79%, the calendar lines up where it should be. I’m not sure where this is in your theme files, you’ll need to find it and adjust accordingly. Here is a screenshot of the div: http://cl.ly/2y4104023Q1U2p1K1G0y
Regards,
JonahJonah
ParticipantHi there,
This is actually fairly involved and will require a good amount of re-working of the widget. I’ll add it to the feature requests because it’s definitely something we should do but it’s too much hacking to post here.
What I would suggest is you use sub-categories for one category that you select for the widget. That way you can still categorize but then select the one category and still pull in events from all the sub-categories.
Regards,
Jonah -
AuthorPosts
