Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHi Craig, you should be able to just delete that individual re-occurrence of the event. It will ask you if you want to delete all occurrences or just that one. Have you tried that?
Jonah
ParticipantHey Troy,
Sure, you could simply add in the dynamic body class for the specific post ID like so:
.postid-370 .eventbrite-ticket-embed iframe {
height: 200px;
}.postid-371 .eventbrite-ticket-embed iframe {
height: 300px;
}.postid-372 .eventbrite-ticket-embed iframe {
height: 400px;
}
…and so on. Not the most elegant solution but that’s the only way I can think of to be able to specifically set the height of the frame on each event.I hope that helps!
– Jonah
May 16, 2012 at 11:50 am in reply to: Not All Posts Appear in "All" List When Events Calendar Pro is Activated #19265Jonah
ParticipantHi Colleen, that is a strange issue. It sounds like maybe the plugin was not properly installed, have you tried reinstalling both the base and Pro to see if that helps anything? You might want to try reinstalling the core WordPress files too. If you email me WP admin access I can take a look and see what I can figure out. Email to jonah [at] tri [dot] be
Thanks,
JonahJonah
ParticipantHi Laura,
Let’s keep the conversation here. Which event in specific are you seeing this issue on?
Jonah
ParticipantGlad to hear that David! We pride ourselves on our support so it’s very encouraging to hear praise like that from our users. If you wouldn’t mind giving us a shout on Twitter and/or giving the plugin a rating at http://wordpress.org/extend/plugins/the-events-calendar/ – we’d really appreciate it!
And if there’s anything else we can help with don’t hesitate to ask 🙂
Cheers,
JonahJonah
ParticipantHi Gaetan,
The Events URL Slug field will not display unless you have pretty permalinks enabled and this is probably why you cannot reach /events. You can enable pretty permalinks by visiting Settings > Permalinks and setting the permalinks to anything but the default but I would suggest postname because it looks the nicest 🙂 After doing that you should be able to see the Events URL Slug field in the plugin settings and should be able to access /events on your website.
Let me know if you need any other assistance with this.
Cheers,
JonahMay 15, 2012 at 12:52 pm in reply to: Error when event is set to reoccur when set to daily or weekly or custom #19203Jonah
ParticipantHey Michelle,
Just a follow up on this and to clarify that switching your permalinks will not impact the hardcoded links at all because all the permalinking system does is actually convert or rewrite query strings for the current page or posts in a query into whatever “pretty” permalink structure you’ve defined for links to those objects. So the hardcoded links won’t be touched at all and should be fine.
Jonah
ParticipantHey David, the_widget is documented pretty heavily here: http://codex.wordpress.org/Function_Reference/the_widget
To pass a title, you should be able to use:
the_widget('TribeEventsCalendarWidget','title=My Calendar Widget');
I hope that helps!
Jonah
ParticipantHi Karen,
To add to what Henry posted you could also add some conditional events page wrappers to conditionally remove those scripts when needed. I’ve got those wrappers here: https://gist.github.com/2415009
To answer your question though… I believe jquery.pjax.js is used only on the calendar pages and events.js is used for the tooltips on the calendar and the calendar widget. So, you should be able to safely remove those scripts on all other pages except for the calendar and wherever you have the calendar widget displayed.
I hope that helps but let us know if there’s anything else you need with this.
Cheers,
JonahJonah
ParticipantHi Kelly,
Have you tried passing in the start_date/end_date as shown in the second example for tribe_get_events in our doco: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events
That should get you what you need but let me know if you need any other help.
Cheers,
JonahJonah
ParticipantHi David,
There shouldn’t be any problem with doing that but maybe you’re not doing it the right way. I tested this code out and it works fine: https://gist.github.com/2703738
All the features of our plugin still work. Let me know whether or not that helps.
Cheers,
JonahJonah
ParticipantHi Troy,
Of course! You can easily modify this with CSS like so:
.eventbrite-ticket-embed iframe {
height: 200px;
}
You can add that to your themes style.css, the events.css (make a copy of the file in /wp-content/plugins/the-events-calendar/resources/events.css and place in an ‘events’ folder in your theme) or tribe-events-community.css (make a copy of the file in /wp-content/plugins/the-events-calendar-community-events/resources/tribe-events-community.css and place in an ‘events/community/’ folder in your theme)
I hope that helps but let me know if you need any other help with this!
Cheers,
JonahJonah
ParticipantIn the interim you could just try hiding those links on the community specific pages by targeting:
.single-wp_router_page .edit-link {
display: none;
}
Change the .edit-link class to whatever yours is in your theme.
– Jonah
Jonah
ParticipantHi John,
Thanks for the report. This does seem to be an issue and I’ve filed a ticket and we’ll get it fixed ASAP.
Cheers,
JonahJonah
ParticipantWell one thing you could do now John is modify the CSS to make the “Show all categories” link pop a little more…
-
AuthorPosts
