Pablo

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • Pablo
    Participant

    Thanks for taking care of it! Looking forward for that update! 🙂

    Pablo

    Pablo
    Participant

    +1

    I am having the same issue. I would call this a bug. I am not able to edit or create new events with multiple instances (recurring events) in my site.

    Is there any quick solution that does not mean to revert?

    Thanks in advance,

    Pablo

    in reply to: Performance issue #1382238
    Pablo
    Participant

    Thanks a lot Cliff!

    Yes, I can not tell why the changes made the function inefficient… but there must be something about that cache then…

    Please let us know!

    Thanks,

    Pablo

    in reply to: Performance issue #1380466
    Pablo
    Participant

    Hello Cliff,

    Thanks for taking care. No, I have no extra information concerning the issue, just that I have a lot of events. I am not sure when it is really called… let me know if it is something that I can disable with a piece of code or something similar. At the moment I have hardcoded the function to set the coordinates manually.

    Thanks,

    Pablo

    in reply to: Recurrence is wrongly created #1298578
    Pablo
    Participant

    Thanks for getting back into this!

    I will keep on watching for the updates!

    in reply to: Recurrence is wrongly created #1298121
    Pablo
    Participant

    Hello Victor,

    I have enabled the communication between my system and TEC now. I pasted previously my system information (I hope you could see it).

    I attach two screenshots: one with the recurrence configuration and the other with the recurrence result. I miss the event happening on the 1st of June 2018 at 3:00pm.

    Do you obtain the same events when you set up that recurrence?

    Thanks in advance,

    Pablo

    in reply to: Return the order #1258340
    Pablo
    Participant

    Thanks a lot! Very quick! 🙂

    I think the add-on is great, but I need to have access to the facebook importer classes on the way that I had it before. I think I will stand with the all plugin for this.

    Thanks for your assistance,

    Pablo

    in reply to: Posible bug in translation for recurrence #1064746
    Pablo
    Participant

    That’s great!! Thanks a lot! 🙂

    in reply to: Posible bug in translation for recurrence #1064739
    Pablo
    Participant

    Great!

    Thanks a lot! 🙂

    in reply to: Modify the search query #1016625
    Pablo
    Participant

    Hei Brook,

    Thanks for your suggestion. It could work… but in fact I am looking for something more “inclusive”. The way you suggest would exclude those events out of the selected venues, and I still want that the search term functionality work as expected (include events from all the venues).

    At the other hand, I think that it could be a good idea to suggest venues matching the search term in the moment that the user is writing… I think that could be user friendly and what the user expect to see nowadays.

    Thanks a lot for your help!

    Best regards,

    Pablo

    in reply to: Modify the search query #1016370
    Pablo
    Participant

    Hei Brook,

    Thanks a lot for your kind answer. I was afraid that it was like that… so you confirm my hunches.

    The guidelines that you provide are very helpful to me!

    Thanks and regards,

    Pablo

    in reply to: Get permalink is not working fine #968627
    Pablo
    Participant

    Hello Brian,

    I followed the recommendations and you were right. The translation plugin that I use does not live well with TEC…

    Thanks a lot for your advise!

    Regards,

    Pablo

    in reply to: Get permalink is not working fine #968416
    Pablo
    Participant

    Hei Brian,

    The permalink function returns nothing, so the href=”” (it means the current edition event page).

    It does not happen the first time that you create the event… but it happens the second time (it is no very predictable).

    Other place where I am able to reproduce the error is on the event-list.php. The view link of every event is incorrect for the same reason… the permalink returns nothing on the first time is called inside the loop. So I need to call one first time (dummy) and then it works.

    Can you reproduce this last one?

    Thanks for your help!

    in reply to: Get permalink is not working fine #968354
    Pablo
    Participant

    Hello Brian,

    Yes, I am having the issues on the front end.

    Regards,

    Pablo

    in reply to: Filter events with start date after now #967749
    Pablo
    Participant

    Dear supporters,

    I think I found the problem. I was doing something wrong, since I was overriding the meta_query entirely. The code should be like this:


    //All the events must start after the date we filter by
    function start_date_strict($query) {
    $post_type = $query->query_vars['post_type'];

    if ($post_type == 'tribe_events') {

    $filterDate = current_time('Y-m-d H:i:s');
    if (!empty( $_REQUEST['tribe-bar-date'] ) ) {
    $filterDate = $_REQUEST['tribe-bar-date'];
    }

    $query->query_vars['meta_query'][] =
    array( // restrict posts based on meta values
    'key' => '_EventStartDate', // which meta to query
    'value' => $filterDate, // value for comparison
    'compare' => '>=', // method of comparison
    'type' => 'DATETIME');
    }
    }
    add_filter( 'tribe_events_pre_get_posts', 'start_date_strict', 100, 1 );

    Thanks anyway!

Viewing 15 posts - 1 through 15 (of 21 total)