Forum Replies Created

Viewing 15 replies - 166 through 180 (of 1,550 total)
  • Brook

    (@brook-tribe)

    Just a quick followup, Adding this snippet to your theme’s functions.php might help as well. I see you are running the Dynamic theme, and in another topic Todd just confirmed that this snippet worked for Dynamic as well as the other theme it was specifically designed for:

    https://gist.github.com/jesseeproductions/0a4af5a83500f82af6ac

    I would give that a go before futzing with a conflict test.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy aminabbasian,

    It’s hard to know for sure why those are not showing. In order to proceed you will need to test if a “conflict” is happening, and if so narrow it down so a fix can be found for it. This guide walks you through how to test for a conflict, and then identify what is conflicting.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Hello again Gert-Jan,

    We are working on building a proper waitlist function, and it will likely be included as part of Event Tickets Plus.

    Until then Event Tickets Plus still allows you to run a mixture of RSVPs and Tickets. In fact event for the same event, you could have a number of RSVPs available alongside Paid Tickets. It’s really up to you.

    Does that answer your question?

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Gert,

    I did see one other person complain of something similar. I have tried my best to reproduce this issue with a variety of settings, but can’t. The two run perfectly together.

    There must be another common denominator as well. Would you mind grabbing your system information and pasting it here? Feel free to redact something from it if you feel that information should be private, but the more info the better about your setup. You can find the system info by going to WP Admin > Events > Settings, clicking on the “Help” tab, and scrolling down to the ‘System Information’ box. (Or by going to [yoursite]/wp-admin/edit.php?post_type=tribe_events&page=tribe-events-calendar&tab=help) That will give me a lot of extra information to help diagnose the problem.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    If only all problems fixed themselves like that! Thanks for getting back Yvonne. One other thing you might try if that ever happens again is “flushing permalinks”. It can help solve Page not Found problems all over WordPress, our plugin included.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Guys,

    I am truly sorry this update is giving y’all problems. There were some very minor changes in it, all focused on input forms.

    I have tried reproducing your issues with the various views not showing, with and without the Event tickets addon. To no avail. I am not seeing that problem on my end. You might give this guide a go, it is very possibly going to fix everyone’s issue except TMalone. Troubleshooting 404 Page Not Found errors

    Would you mind opening up your own topic and thoroughly detail your problem? Per the forum rules on wordpress.org you should start your own topic, unless “you are using the same version of WordPress on the same physical server hosted by the same hosts with the same plugins, theme, and configurations as the original poster”. Having your own topic helps ensure that each person gets the topics full attention and no one’s unique details get accidentally ignored. TMalone has a very different issue than the rest.

    TMalone have you performed any modifications to the calendar, such as editing the CSS, JavaScript, or PHP? If so, anytime you update WordPress itself erases those modifications. It downloads a brand new copy of the plugin and deletes the old copy/version.

    If you have not done any modifications, it sounds like you are experiencing a conflict. In order to proceed you will need to test if a “conflict” is happening, and if so narrow it down so a fix can be found for it. This guide walks you through how to test for a conflict, and then identify what is conflicting.

    Does that all make sense?
    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Hannah!

    I’d love to help. I believe what you are looking for is _EventStartDate. You can find a full list of even meta keys here.

    Keep in mind though that there is typically a lot of logic that powers showing an event date. Thus it is typically shown by calling the PHP function tribe_events_event_schedule_details() which will show the start date, time (if applicable), and end date/time (if applicable). But this requires you to be able to call a PHP function and not a meta keys.

    Does that all make sense?
    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Thaddius.

    That is strange! Do you have revisions enabled for Event posts perchance?

    If not, I an thinking this is very likely a conflict. In order to proceed you will need to test if a “conflict” is happening, and if so narrow it down so a fix can be found for it. This guide walks you through how to test for a conflict, and then identify what is conflicting.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Hello Mutart,

    That is actually a bug we’ve got this bug logged in our internal tracking system and will notify you here as we make progress on this issue. I apologize for any inconvenience that this issue has caused.

    In the meantime, you can fix this issue by making some quick modifications to the core plugin. These changes will get overridden with the next update which will include an official fix to this issue.

    Within the main Events Calendar plugin, navigate to the src > functions > template-tags > general.php file and open it within your preferred text editor.

    Navigate to line #1320 within that file. It should look like:

    $excerpt = wp_trim_excerpt( $excerpt );

    You can change that line to be:

    $excerpt = wp_trim_words( $excerpt, ’55’ );

    Where “55” is the number of words that you would like the excerpt to be there.

    Let me know if you have any further questions or concerns here.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Shandb,

    Thanks for sharing the code. That should be working. If it’s not then it would see that the variable $event is not for the proper post. Keep in mind each event in the series will have its own post ID, so you will need to nab the one for the specific date you are trying to display.

    Does that all make sense?

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy mdereuver,

    It is very possible that your theme will need a little extra CSS to account for the 4.0 events list widget. If you are not able to craft the CSS, you might share a link to your site here. Sometimes a volunteer is willing to write the CSS for you.

    Riley, it looks like your widget just needs a little CSS to be bold. Adding this to any theme CSS file would probably work:

    h4.tribe-event-title {
        font-weight: bold;
    }

    If you need further help, mind opening a new topic? Per the forum rules on wordpress.org you should start your own topic, unless “you are using the same version of WordPress on the same physical server hosted by the same hosts with the same plugins, theme, and configurations as the original poster”. Having your own topic helps ensure that each person gets the topics full attention and no one’s unique details get accidentally ignored.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy guys,

    Thanks for sharing links to your sites and bringing this to our attention.

    I have investigated this and feel like the logical next step is to do a conflict test. We need to narrow down what is conflicting and causing this, once we have identified how this is happening then hopefully we can craft a solution/fix, or perhaps release an update with a fix contained in The Events Calendar. This guide walks you through how to test for a conflict, and then identify what is conflicting. What’s the result there?

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Guys,

    Thanks for reaching out to us and bringing this issue to our attention!

    We’ve got this bug logged in our internal tracking system and will notify you here as we make progress on this issue. I apologize for any inconvenience that this issue has caused.

    In the meantime, you can fix this issue by making some quick modifications to the core plugin. These changes will get overridden with the next update which will include an official fix to this issue.

    Within the main Events Calendar plugin, navigate to the src > functions > template-tags > general.php file and open it within your preferred text editor.

    Navigate to line #1320 within that file. It should look like:

    $excerpt = wp_trim_excerpt( $excerpt );

    You can change that line to be:

    $excerpt = wp_trim_words( $excerpt, ’55’ );

    Where “55” is the number of words that you would like the excerpt to be there.

    Let me know if you have any further questions or concerns here.

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy Zlatte,

    It sounds like your server might be generating a couple or errors when you visit that page. The error messages themselves should give you an idea of what is going on. They can typically be found in the webhost’s server error logs m and a new entry will be added anytime you or a visitor encounters a blank white or half loaded page.

    Sometimes though folks skip even checking their error logs, and jump straight to doing a conflict test as it requires less knowledge of PHP errors. This guide walks you through how to test for a conflict, and then identify what is conflicting.

    Does that all make sense?

    Cheers!
    – Brook

    Brook

    (@brook-tribe)

    Howdy julienyc,

    I am sorrythis is giving you trouble. Good call testing the caching plugin first. That is often a cause for things like this.

    We see this from time to time, and it ultimately stems from either a conflict or a caching issue. When it’s a conflict what is typically happening is a plugin or your theme is interfering with the WP Ajax API, adding parameter to every WP Ajax query. This break WP Ajax for everything except that specific plugin, and there is unfortunately nothing we can do to fix it on our end. It is up to the plugin or theme dev to stop unintentionally breaking WP Ajax.

    In order to proceed you will need to test if a “conflict” is happening, and if so narrow it down so a fix can be found for it. This guide walks you through how to test for a conflict, and then identify what is conflicting.

    Kace, I am not seeing that issue on your site. Perhaps it is slightly different, or you were able to fix it? On your site paging back and forth loads events.

    Cheers!
    – Brook

Viewing 15 replies - 166 through 180 (of 1,550 total)