Josh

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 4,178 total)
  • Author
    Posts
  • in reply to: Upcoming #1226947
    Josh
    Participant

    Hey Daniel,

    It looks like I forgot to add the last line in that function where you return the $args:

    
    add_filter( 'tribe_events_list_widget_query_args', 'custom_widget_filter' );
    function custom_widget_filter( $args ) {
    $args['start_date'] = current_time( 'Y-m-d' );
    return $args;
    }
    

    That should address half the issue, however it looks like that argument for “start_date” doesn’t actually use that as an “events that start after this date” type of filter. Will need to think of an alternative approach which might be a manual check on the start date from the results. I’ll have to do a little playing around with this and get back to you.

    Thanks!

    in reply to: Picture Overlay size… #1226795
    Josh
    Participant

    Hey Sebastien,

    Ah gotcha! I’m sorry I misunderstood that one before. But I’m glad you were able to find a solution here!

    I’ll go ahead and close this thread for now. If you have any further questions, please don’t hesitate to open a new one.

    Thanks!

    in reply to: Upcoming #1225358
    Josh
    Participant

    Hey Daniel,

    Thanks for following up.

    Our plugin comes with the Event List widget so you can add that to the widget area that you were wanting to use it in.

    After that, you would use the code to filter the query for the widget by adding it to your theme’s functions.php file or you could use a code snippet type of plugin.

    Let me know if this helps.

    Thanks!

    in reply to: Issue going back from shortcode calendar #1224494
    Josh
    Participant

    Hey Natasha,

    Thanks for reaching out to us!

    I apologize for the inconvenience of this particular issue but it does appear to be a bug in our plugin that I was able to reproduce.

    I’ve created an internal ticket for tracking this issue and you’ll be notified here as we make progress on addressing this one.

    I apologize again for the inconvenience here. Let me know if you have any questions or concerns about the bug resolution process here.

    Thanks!

     

    in reply to: Upcoming #1224370
    Josh
    Participant

    Hey Daniel,

    Thanks for following up here!

    Sure thing! You can use our Event List widget and then filter the query args to only get events that have start dates passed the current date.

    For this, you would use the “tribe_events_list_widget_query_args” filter. That filter works to modify the arguments that will be passed to our “tribe_get_events” function. For that you could do something like:

    
    add_filter( 'tribe_events_list_widget_query_args', 'custom_widget_filter' );
    function custom_widget_filter( $args ) {
    $args['start_date'] = current_time( 'Y-m-d' );
    }
    

    Let me know if this helps.

    Thanks!

    Josh
    Participant

    Hey Chris,

    The first step I would take here would be to verify that this is the full root of the issue that is happening on your site.

    If it is, the best solution would be to find a workaround for your theme javascript to work with the enqueued version default to WordPress. You could pursue modifying our javascript, however most plugins anticipate compatibility with the default versions of jquery shipped with WordPress and you could potentially face other conflicts in the future.

    Let me know if this helps.

    Thanks!

    in reply to: After-sales question: Merging 2 accounts #1222894
    Josh
    Participant

    Hey Willem,

    Thanks for reaching out to us!

    Sure thing! Would you mind emailing “support[at]theeventscalendar.com” for help getting things set up the best way for your accounts here? The simplest approach would be to purchase a new license under the single account that you’d want to keep. Emailing us will allow us to help you get that structured more like a renewal rather than a completely new purchase.

    Thanks!

    in reply to: Upcoming #1222889
    Josh
    Participant

    Hey Daniel,

    Thanks for reaching out to us!

    To clarify a couple of things here,

    • How are you wanting to feed the events into your home template? One of our default widgets? Some custom code in your template?
    • For the list, you want to exclude any event where the start date of the event has already passed even if that event is a currently running event?

    Thanks!

    in reply to: Issue going back from shortcode calendar #1222883
    Josh
    Participant

    Hey Natasha,

    Thanks for reaching out to us!

    Would you mind sending over the exact shortcode that you’re using on your page there so I can do some further tests here?

    Thanks!

     

    in reply to: Add Event's Categories to single event in loop #1222877
    Josh
    Participant

    Hey Adage,

    Thanks for reaching out to us!

    If you change the “‘label’ => null,” line to “‘label’ => ””, it should remove the default label that is getting provided there.

    Let me know if this helps.

    Thanks!

    in reply to: Picture Overlay size… #1222876
    Josh
    Participant

    This reply is private.

    in reply to: Picture Overlay size… #1221816
    Josh
    Participant

    Hey Sebastian,

    Thanks for reaching out to us!

    This is actually something that is controlled by your theme. Take a look within your theme files and find a “tribe-events >single.php” file. There you should see reference to the image being pulled there and can choose a different size (any of the default or a new one registered with add_image_size()) or remove that section completely.

    Let me know if this helps.

    Thanks!

    in reply to: Lost All Event Entries And Ability To Create New Events #1221815
    Josh
    Participant

    Hey Todd,

    Thanks for reaching out to us!

    I’m sorry to hear you’re having issues with our plugin on your site! This sounds like a terrible thing to have happen and hopefully we can help to get to the bottom of this one quickly.

    To start, I took a look at your site and I can see that the events are still pulling in on the homepage of your site, so they should still be in the database. So, let’s see why they’re going to 404 pages and why you’re unable to edit them in the dashboard.

    1. Can you try going to the Settings > Permalinks tab within your dashboard and re-saving the permalink settings there? This will cause a flush of the rewrite rules and possibly fix the front-end 404 errors.
    2. After that, try following our Testing for Conflicts procedures to see if there is a bug related with one of the other plugins on your site as a starting point for debugging what’s going on here.

    Let me know if this helps.

    Thanks!

    in reply to: Evento recurrente (Ver todos): Error 404 #1221813
    Josh
    Participant

    Hey Luis,

    Thanks for reaching out to us!

    This is a bug which we recently discovered as well. A fix is already under development and should be released still this month if all goes according to plan.

    To get it working until the fix arrives here is what you can do:

    Open the wp-content\plugins\events-calendar-pro\lang\tribe-events-calendar-pro-xx_XX.po translation file with an appropriate app (e.g. Poedit) and change the translation of the English source string ‘all’ to ‘all’ (or remove it) instead of having it translated to your language. Save and upload.

    Again sorry for this, a fix is on the way.

    Let me know if the above fixes it for you.

    Thanks

    in reply to: wrong permalink for "all events" of reccuring event #1221811
    Josh
    Participant

    Hey Dirk,

    Thanks for reaching out to us!

    This is a bug which we recently discovered as well. A fix is already under development and should be released still this month if all goes according to plan.

    To get it working until the fix arrives here is what you can do:

    Open the wp-content\plugins\events-calendar-pro\lang\tribe-events-calendar-pro-xx_XX.po translation file with an appropriate app (e.g. Poedit) and change the translation of the English source string ‘all’ to ‘all’ (or remove it) instead of having it translated to your language. Save and upload.

    Again sorry for this, a fix is on the way.

    Let me know if the above fixes it for you.

    Thanks

Viewing 15 posts - 1 through 15 (of 4,178 total)