Nico

Forum Replies Created

Viewing 15 posts - 5,446 through 5,460 (of 6,506 total)
  • Author
    Posts
  • in reply to: lost laguage files after upgrading #1016893
    Nico
    Member

    Hey Mao, thanks for confirming this πŸ™‚

    As always glad to help! If you need anything else don’t hesitate to open a new topic in the forums.

    Cheers,
    Nico

    in reply to: Category Management #1016892
    Nico
    Member

    Hey Vaughn,

    Thanks for jumping in here! I’ll try to clarify this, but not sure what you mean by:

    So not filtering one events page to show a single category – but different events pages for each category.

    What would be the difference in each ‘different events page for each category’? Maybe you can elaborate a bit more in what you are looking to achieve here?

    Thanks,
    Nico

    Nico
    Member

    Hi Laureen,

    Thanks for reaching out and sorry this is still an issue for you πŸ™ I’ll try to help you here!

    First of all, we try to keep just one issue per thread, this way different issues can be addressed by different team members simultaneously. It also makes finding solutions easier for other users searching the forum. So if you could open up a new thread for the event list widget issue that would be great. I’ll help you with pagination issues here.

    Is it possible for me to deactivate, uninistall and reinstall the events calendar and events calendar pro, or would I then lose all my events data?

    No you won’t lose any of the data in your site. In fact re-installing would be a great starting point as you confirmed that you already tested for conflicts.

    Unfortunately we are not allowed to log in and make changes to client sites at all πŸ™

    Please re-install the plugins and let me know how that goes,
    Best,
    Nico

    in reply to: Show Year on Event Page Even if Event in Current Year #1016713
    Nico
    Member

    Hi Josh,

    Thanks for reaching out. I’ll help you with this one!

    So not sure why changing the setting for ‘Date without year’ won’t work for you, it seems to be the same as commenting the lines in the plugin. Are you looking to change this just for single events? If that’s the case you can do a template override of the single event template and replace the function call for some custom code in the template. You can check the details for that on our Themer’s guide.

    Please let me know if this solution makes sense and if you need more details on how to achieve the override,
    Best,
    Nico

    Nico
    Member

    Hi Jim,

    Sorry to hear re-installing the plugin had no effect on this πŸ™ Unfortunately I’m still not able to reproduce this on my end.

    Have you imported the Organizers/Venues from a CSV or other source? By any chance have you created an Organizer/Venue with empty name?

    Can you share the site URL in a private reply? Is it possible to access the submit form anonymously? I would like to take a look to it, maybe some clue shows up.

    Thanks for your patience on this,
    Best,
    Nico

    in reply to: Load times slowed with New Version #1016684
    Nico
    Member

    Hey Jay,

    Thanks for reaching out to us, and sorry to hear about this performance issue you are experiencing.

    I reviewed the 3.12.4 changelog and I don’t see any potential performance impacting changes in there. Mostly bug fixes.

    Can you access the server’s error log? Maybe we can see something prompting there… I also see you are running a cache plugin, have you tried disabling it to test 3.12.4? Can you test this in a staging server or local instance?

    Please let me know about this,
    Best,
    Nico

    in reply to: Customization single event page #1016629
    Nico
    Member

    Glad to hear Sebastien!

    You can filter the output of the ‘tribe_events_week_day_header’ function which generates that string. Try adding the following snippet to your theme’s functions.php file (located at wp-content/themes/your_theme/):

    add_filter( 'tribe_events_week_day_header', 'format_week_date' );
    function format_week_date ( $html ) {
    $html = str_replace( 'th', '', $html);
    $html = str_replace( 'st', '', $html);
    $html = str_replace( 'nd', '', $html);
    $html = str_replace( 'rd', '', $html);
    return $html;
    }

    That should do the trick, please let me know if it does!
    Best,
    Nico

    in reply to: Facebook events importing duplicates #1016615
    Nico
    Member

    Hey Dj,

    Thanks a lot for the heads-up on this… Keep me posted on your findings please!

    Best,
    Nico

    Nico
    Member

    Glad to hear Carl πŸ™‚

    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: Timetable not loading on mobile devices #1016598
    Nico
    Member

    Hey Kirret,

    Thanks for confirming it! Yeap, they might have further info but for the nature of the error be sure to check with your server admin as well.

    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.

    Hope you can find a solution for this soon,
    Best,
    Nico

    in reply to: View More link not working #1016417
    Nico
    Member

    This reply is private.

    in reply to: Facebook events importing duplicates #1016415
    Nico
    Member

    Hey Doug,

    Thanks for following up on this! Sorry to hear about that Doug. Look into the original bug report there are no theme/plugin patterns about where this might be coming from.

    @DJ, do you think you can set up a test site for this? If any of you guys has cPanel (or similar software) on your hosting provider, there might be the option to create a 1-click WordPress install which comes in handy for setting up this test site.

    Please let me know if you can do so @DJ,
    Thanks,
    Nico

    in reply to: Change "Free!" Price in WooTicket Single-Event #1016404
    Nico
    Member

    Hey Sarah,

    That’s great! Personally, I found that Say What? plugin is a pretty solid option for this task as it’s pretty lightweight and theme-independent as well. But sometimes is better to add a snippet and not a plugin for a small task as this one, anyway that’s your call!

    I’ll leave this thread open until you can confirm this is solved πŸ™‚

    Cheers,
    Nico

    in reply to: Translation of the category string #1016400
    Nico
    Member

    Hey Thomas,

    Thanks for following up on this, and sorry to hear re-generating the site’s permalinks didn’t fixed the issue for you πŸ™

    Can you please follow the steps described in our Testing for conflicts guide? This way we can see if this is a problem in our plugin or a conflict with the theme or other installed plugins.

    It would also be great if you could share your system information with me so I can check if everything looks right on that end. Please mark your reply as private if you do so.

    Best,
    Nico

    in reply to: Default event title #1016396
    Nico
    Member

    Hey Luke,

    Thanks for clarifying, I was completely miss-understanding your request here, sorry for that!

    Please give this snippet a try and let me know if it does the trick now:

    add_filter( 'default_title', 'events_default_title', 10, 2 );
    function events_default_title( $title , $post ) {
    if( $post->post_type == 'tribe_events' ) {
    $title = "Pre-set title for events";
    }
    return $title;
    }

    Cheers,
    Nico

Viewing 15 posts - 5,446 through 5,460 (of 6,506 total)