Nico

Forum Replies Created

Viewing 15 posts - 3,166 through 3,180 (of 6,506 total)
  • Author
    Posts
  • in reply to: Premature closure of the ticket. Calling Nico! #1140975
    Nico
    Member

    This reply is private.

    in reply to: Cannot Add Images to Events Widget #1140971
    Nico
    Member

    Thanks 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,
    Nico

    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Responsive issues #1140569
    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Tooltip on click #1140568
    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Cannot Add Images to Events Widget #1140468
    Nico
    Member

    I 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,
    Nico

    in reply to: Remove times from Event Schedule Details function? #1140466
    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Nofollow on events, organizers and venues #1140462
    Nico
    Member

    Thanks 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,
    Nico

    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Cannot Add Images to Events Widget #1140438
    Nico
    Member

    Thanks 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,
    Nico

    in reply to: Responsive issues #1140434
    Nico
    Member

    Hey 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,
    Nico

    in reply to: moving title map view #1140418
    Nico
    Member

    Woot! 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,
    Nico

    in reply to: Deleted eventbrite events still showing on calenda #1140416
    Nico
    Member

    Hi 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,
    Nico

    in reply to: Can I filter the filter?!? #1140259
    Nico
    Member

    Hey 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,
    Nico

    in reply to: Translation not working #1140254
    Nico
    Member

    Thanks 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

Viewing 15 posts - 3,166 through 3,180 (of 6,506 total)