Forum Replies Created
-
AuthorPosts
-
Nico
MemberThis reply is private.
Nico
MemberThanks for confirming Aaron! Now we now the template override is not taking any effect.
I just re-checked the process in my local install and it’s working for me, so not sure what’s going on in your case.
Let’s do the following test:
- Make sure events calendar PRO is active.
- Switch the site’s theme to default TweentySixteen.
- Create the folder structure (tribe-events/pro/widgets/modules/)in the theme’s folder (wp-content/themes/TweentySixteen/).
- Inside the just created folder modules create the single-event.php file and leave it without content.
- Check the front-end of the site to see if the widget is displaying (it should only display the widget title).
This is the basic test if it works, we will work from here!
Please let me know how that goes,
Best,
NicoJuly 18, 2016 at 3:41 am in reply to: Editing in Woocommerce – venue and and host entry lost #1140967Nico
MemberThanks for the heads-up and understanding!
communication is always a win, isn’t it?
Yes it is 🙂
I’ve linked this thread in the bug report, and we will follow-up once we have some news to share!
Hope you have a great week,
Best,
NicoNico
MemberThanks Kate and glad to see this is solved 🙂
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberThanks for following up Kerry!
I poked this a bit today but couldn’t find the definitive solution yet (I could unbind the mouseenter action and load a custom copy of the js but still having some issue to show the tooltip on click). I’m a bit short of time right now but I’ll continue to work on this next week!
Thanks for the patience,
Have a great weekend,
NicoNico
MemberI did delete and refresh, forgot to mention. Just did it again.
When you delete the content of the file (but keep the file in place) does the widget still shows up in the front-end of the site?
Please let me know about it,
NicoNico
MemberThanks for the heads-up David 🙂
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Have a great weekend,
NicoNico
MemberThanks for clarifying Omar!
The snippet you are using is actually working for me, but please note this in not the event link, but the external website link for the event: https://cloudup.com/cuGY79A63RP
Regarding the other filters you mention, it looks like it should work for tribe_get_venue_website_link and tribe_get_organizer_link because as tribe_get_event_website_link, the functions are returning the link html element, while in the case of single events it’s only returning the URL for the event and the markup for the link is inside the template (and there are a bunch of templates to modify).
If you don’t want the single pages for events, venues and organizer and day view, then it might be a better idea to print a robots meta tag with ‘noindex, nofollow’? Please let me know if this would work, if not I can see if there’s a hacky solution that might work for you.
Have a great weekend,
NicoJuly 15, 2016 at 10:46 am in reply to: Struggling to change any styles for display of Upcoming Events widget (PRO) #1140447Nico
MemberThanks for following up Alec!
I’ve inspected the widget in http://www.reephambenefice.org.uk/wp/messy-church/ but couldn’t see the inline CSS you talk about.
Maybe you could make this work at some point? Or maybe I’m not looking in the right place?
Please let me know about it,
Best,
NicoNico
MemberThanks Aaron!
Can you please try to empty (delete all code) from the ‘single-event.php’ file and reload the page to see if the widget still shows up or not? This will tell us if the template override is working or not!
Can you please check on this? This way we can see if it’s loading the template or not at all.
Have a great weekend,
NicoNico
MemberHey Kate,
Thanks for reaching out! I can help you here too…
Give the CSS snippet below a try and let me know if it makes it right:
#tribe_events_filters_wrapper {
z-index: 999!important;
}
You can add this to your theme (or child theme) stylesheet or via Simple Custom CSS plugin.
Have a great weekend,
NicoNico
MemberWoot! Stocked to hear 🙂
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Have a great weekend,
NicoNico
MemberHi Pascha,
Thanks for getting in touch! Glad to help you out once again 🙂
What you describe is in fact the default behaviour. I can see how this doesn’t work for your particular case, but in most cases I guess users won’t want their events to be automatically deleted from their site, specially when events are created in WordPress and then synced with EventBrite.
Please let me know if there’s anything else I can help you with,
Best,
NicoNico
MemberHey Kate,
Thanks for letting us know you could sort this out! And thanks for the kind words 😉
I’ll go ahead and close out this thread, but if you need help with anything else please don’t hesitate to create a new one and we will be happy to assist you.
Have a great weekend,
NicoNico
MemberThanks for following up!
Seems that some of those strings are untranslated in Swedish (Confirm RSVP for example). Just to be clear are you seeing a mix of translated and untranslated string? I see ‘E-mail’ is getting printed as ‘E-post’, no sure if that’s coming from the Swedish translation or if it’s a customization you made.
The snippet in this article works for me, try pasting the code below in your theme (or child theme) functions.php file:
function tribe_custom_theme_text ( $translations, $text, $domain ) {$custom_text = array(
'Confirm RSVP' => 'Book',
);if( (strpos($domain, 'tribe-') === 0 || strpos($domain, 'the-events-') === 0 || strpos($domain, 'event-') === 0) && array_key_exists($text, $custom_text) ) {
$text = $custom_text[$text];
}return $text;
}
add_filter('gettext', 'tribe_custom_theme_text', 20, 3);
Best,
Nico -
AuthorPosts
