Nico

Forum Replies Created

Viewing 15 posts - 3,901 through 3,915 (of 6,506 total)
  • Author
    Posts
  • in reply to: CRITICAL: Installed Events Calendar Pro, All #1110386
    Nico
    Member

    Hi there,

    Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.

    We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.

    Best,
    Nico

    in reply to: 404 error with enabled Sensei PlugIn #1110385
    Nico
    Member

    Hi there,

    Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.

    We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.

    Best,
    Nico

    in reply to: Same problem here #1110384
    Nico
    Member

    Hi there,

    Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.

    We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.

    Best,
    Nico

    Nico
    Member

    Hi there,

    Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.

    We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.

    Best,
    Nico

    in reply to: 404s when Sensei is active #1110381
    Nico
    Member

    Hi there,

    Thanks for the patience while we looked into this! We’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5). Downgrading Sensei to version 1.9.4 should make this right again.

    We are in contact with the Sensei team to solve this, and will be giving you another heads-up when the fix is in place.

    Best,
    Nico

    in reply to: Events Not Displaying #1110240
    Nico
    Member

    Hey folks,

    Thanks for the patience! I’ve done some testing and this issue seems to be introduced in the latest update of Sensei (version 1.9.5).

    Can you try to downgrade Sensei to version 1.9.4 and re-test this? We are making contact with the Sensei team to solve this!

    Please let me know about this,
    Best,
    Nico

    in reply to: Search Filter Error #1110219
    Nico
    Member

    This reply is private.

    in reply to: custom urls for event search queries #1110217
    Nico
    Member

    Hi David,

    Thanks for reaching out! Interesting strategy to get cleaner URLs 🙂

    This article gives a nice overview: Beginner’s Guide to Creating Redirects in WordPress. I don’t see any aspect of this that might be different you the URL’s generated by our plugin.

    Please let me know if this answers your question,
    Best,
    Nico

    in reply to: string translation #1110130
    Nico
    Member

    Hey @edebex,

    Thanks for reaching out to us! I’ll help you here, but first let me say that editing the language file (.po) is not recommended as your changes will be overwritten with plugin updates. There’s a really handy plugin to do this safely: Say What?.

    Now regarding the string for Free not translating there, I’m not sure why that happens. If you decide to use the above mentioned plugin it might work, if not you can use the followin snippet (just paste it in your theme (or child theme) functions.php file):


    /*
    * Change the Free ticket label
    */
    function change_free_label ( $cost, $post_id, $with_currency_symbol ) {

    if ( $cost == 0 || $cost == "" || $cost == "Free" ) return 'gratuit';
    }
    add_filter('tribe_get_cost', 'change_free_label', 20, 3);

    Please let me knows if any of those solutions work for you,
    Best,
    Nico

    in reply to: tribe_get_events next event by hour #1110112
    Nico
    Member

    Hey Malcolm,

    Thanks for following up!

    I gave the code a try, just changed the eventDisplay to upcoming (as it made more sense) and the code seems to be working for me. The snippet below will output the next upcoming event before the events template (you can see this in the list view for example) in the front-end:


    function get_next_event ( ){
    // Retrieve the next event or meal
    $specials = tribe_get_events( array(
    'posts_per_page' => 1,
    'tax_query'=> array(
    array(
    'taxonomy' => 'tribe_events_cat',
    'field' => 'slug',
    'terms' => 'mole'
    )),
    'start_date' => current_time( 'Y-m-d g:i' ),
    'eventDisplay' => 'upcoming',

    ) );

    print_r($specials);
    }

    add_action ( 'tribe_events_before_template', 'get_next_event');

    If you are checking the events start time / end time be sure to check the site timezone is the same as your 😉

    Please let me know if this works for you,
    Best,
    Nico

    in reply to: Google #1110061
    Nico
    Member

    Hi J.P.,

    Thanks for reaching out and for you interest in our products 🙂

    We have an add-on called iCal Importer that let’s you import events from Google Calendar. You can set up recurring imports to keep up with new events added.

    Please note this doesn’t mean that both calendar will be synced. For example: if you delete an event in Google Calendar that was previously imported it won’t be deleted in the WordPress site. Also if you create a new event in your WordPress site it won’t be pushed to the G Cal.

    Do you think this might work for your project?

    Best,
    Nico

    in reply to: Adding Events to archive with other posts #1110053
    Nico
    Member

    Hi Patrick,

    Thanks for reaching out to us! I’ll help you here…

    Regarding the customization you mention, I’m not sure how you can get the correct link there, maybe there’s a filter to alter the output of the link? Regarding permalinks our plugin options just limit to changing the event slugs (event/events).

    Events Calendar PRO includes a mini calendar widget which is very similar to the WordPress Calendar Widget but works just for events. I guess this might be the solution.

    Please let me know if this answers your question,
    Best,
    Nico

    in reply to: Events alongside products #1110047
    Nico
    Member

    Hi there Bas,

    Thanks for reaching out!

    When I buy and install the ticket sales plugin will I keep the products/add to cart functionality or will everything turn into a ticket sales process?

    Yes! The experience with the e-commerce plugin should be the same.

    Please let me know if there’s anything else I can help you with,
    Best,
    Nico

    in reply to: query with ical feed #1110043
    Nico
    Member

    Hi Matthew,

    Thanks for getting in touch!

    Is this something that becomes available with the pro version?

    No, but it’s something you could achieve via a snippet / some custom code. Check out the code in this reply by Cliff: https://theeventscalendar.com/support/forums/topic/can-i-create-a-ical-feed-sync/#dl_post-1024051

    Please let me know if there’s anything else I can do for you,
    Best,
    Nico

    in reply to: Events Not Displaying #1110019
    Nico
    Member

    Hi Tribella,

    Thanks for adding your voice! As stated above the dev team is looking into this issue, we still don’t know about possible solutions. As soon as I have some more news to share I’ll do so here.

    The fix for this is scheduled for next maintenance release coming out next week, but we still didn’t have much time to look into it. As usual this are the planned dates and depending on the complexity of the issue it might take a little longer, hopefully not!

    Best,
    Nico

Viewing 15 posts - 3,901 through 3,915 (of 6,506 total)