Forum Replies Created
-
AuthorPosts
-
Geoff
MemberHi Ace, thanks for getting in touch!
We actually rely on community members (like yourself) for translations. In fact, we have a site that is completely dedicated to submitting translations. If you’re seeing English instead of Arabic, then that means we need some help there, and the site is a good place to start.
Here’s an article that digs into how the translation submission process works.
Does this help answer your question? Please let me know. ๐
Cheers!
GeoffGeoff
MemberHi Rachel,
Hmm, that’s strange. Can you elaborate more on what you mean by inactive? Changing the CSS shouldn’t change the actual functionality of the link–just the styling.
Thanks!
GeoffGeoff
MemberMy pleasure! Thanks for reaching out and looking forward to the feature request. ๐
July 14, 2015 at 10:31 am in reply to: Community event published on calendar without approval #986352Geoff
MemberAh, there we go! That was the missing step I needed, thanks!
That does indeed seem to be a bug. I’ve ticketed it in our system and will follow up with you when we have more progress or news to share. Thanks so much for reporting this–I really appreciate the heads up. ๐
I’ll set the status of this thread to Pending Fix for now.
Cheers,
GeoffJuly 14, 2015 at 8:44 am in reply to: Community event published on calendar without approval #986290Geoff
MemberHi Angie,
Thanks for the staging site and additional info–that’s SUPER helpful and very appreciated. ๐
I just tried submitting a test event for July 15.
I don’t see it in Month View:
http://ipscene.staging.wpengine.com/events/…or in List View:
http://ipscene.staging.wpengine.com/events/2015-07-15/I also am not able to access the URL for the event itself:
http://ipscene.staging.wpengine.com/event/modern-tribe-testDo you see the submission in your Pending Drafts queue?
Cheers!
GeoffGeoff
MemberHi James,
OK, looking at this a little deeper. ๐
Do you happen to have any customizations in place. For example, if you go to your theme directory, do you see a folder calledย tribe-events? Or have you made modifications directly to the Month View template? Or perhaps any functions that target Month View?
The reason I ask is because the Month View layout on your site looks different from the one that ships with the plugin by default.
Cheers!
GeoffGeoff
MemberHi affariproject,
Good question! That’s unfortunately still the case here. However, would it be possible to try integrating what you’re looking for with Advanced Custom Fields, or a similar plugin that works with custom fields? I’ve seen success with that in other cases, so it may be worth checking out. ๐
Cheers!
GeoffGeoff
MemberHi Sharon,
Thanks for getting in touch!
The calendar unfortunately does not include a sidebar in the event template. However you can change the template to one of your theme’s templates that has an existing sidebar under Events > Settings > Display. That would give you a sidebar, but it would be controlled in the Appearance > Widgets area rather than be a unique sidebar to a specific event.
The other thing you could do is add a new sidebar directly to the event template. We’re fairly limited in how much support we can provide for custom development like this, but do have a Themer’s Guide to help you get started and I’d be happy to answer any specific questions you have as best I can.
Cheers!
GeoffGeoff
MemberAh gotcha, I see that now. Thanks!
Do you have any customizations you’ve made to the calendar? What did you reverse that is causing that to happen?
I also noticed this error popping up in the console:
ย You have included the Google Maps API multiple times on this page. This may cause unexpected errors.
It looks like your theme or another plugin may be including an additional instance of the Google Maps API than the one that The Events Calendar provides for the calendar mapping functionality. That could very well be causing the issue here since the tooltips are based on Javascript and that is a Javascript conflict.
Are you able to remove that additional instance of the API being called? i’m hoping that will resolve the tooltip issue. ๐
Cheers!
GeoffGeoff
MemberHi Aline, thanks for getting in touch!
The Events Calendar is a single calendar that contains all published events. However, you can directly link to specific categories or other views in other to give the appearance of having multiple calendars.
For example, here is the format for linking to a category:
[your-site]/[events-slug]/category/[category-slug]Here’s an article that dives into that a little deeper.
Does this help answer your question? Please let me know. ๐
Cheers!
GeoffGeoff
MemberHi Michelle,
Thanks for following up!
Hmm, I wasn’t able to see the “WP Router Placeholder Page” message in that link. Is it possibleย I’m just missing it, or perhaps you can point me to where it is? Here’s a screenshot of what I’m seeing.
I do notice that the Community Events form is not using the same template as the rest of The Events Calendar. It actually looks like it’s not using any template at all, which is strange as well.
Let’s see where that message is popping up first and see if we can get that cleared up.
Cheers!
GeoffGeoff
MemberThanks James! I’m going to look at this with someone else on the team here to see if we can come up with any other ideas for you here.
Thanks for your patience and I’ll follow up again shortly. ๐
Geoff
Geoff
MemberHey Chris,
Shoot, sorry about that! I really thought that last round of code would do the trick.
Yeah, you should be able to cut out the details meta and just be left with the map. You may need to fiddle with exactly which parts to remove since it seems your theme is behaving differently with mine, but removing this is what worked for me:
[php]
// Always include the main event details in this first section
tribe_get_template_part( ‘modules/meta/details’ );// If we have no map to embed and no need to keep the venue separate…
if ( ! $set_venue_apart && ! tribe_has_organizer() && tribe_embed_google_map() ) {
// If we have no organizer, no need to separate the venue but we have a map to embed…
tribe_get_template_part( ‘modules/meta/venue’ );
echo ‘<div class="tribe-events-meta-group tribe-events-meta-group-gmap">’;
tribe_get_template_part( ‘modules/meta/map’ );
echo ‘</div>’;
} else {
// If the venue meta has not already been displayed then it will be printed separately by default
$set_venue_apart = true;
}
[/php]Cheers!
GeoffGeoff
MemberMy pleasure! Glad to be of service. Please feel free to reach back out if any other questions pop up–we’d be happy to help. ๐
Geoff
MemberHere, perhaps try this instead for yourย meta.php file. It seems to work for me without duplicating venue info.
Geoff
-
AuthorPosts
