Brook

Forum Replies Created

Viewing 15 posts - 916 through 930 (of 4,796 total)
  • Author
    Posts
  • in reply to: List of Views in Month Error Pt Deux – 4.2.1 #1132688
    Brook
    Participant

    That’s strange it disappeared. Did you downgrade all of the Tribe plugins? If one is on the 4.1.0 version they all should be.

    Technically one thing that should hide those errors, even on 4.2, is by setting WP_DEBUG_DISPLAY to false in your wp-config.php, as outlined in that document. If that does not work you might try also adding this to your theme’s functions.php:

    error_reporting(0);

    That should hide all errors on your website including the ones you’re currently seeing. I had one user claim it did not work, but I am not certain whether or not they inserted it right. With how WordPress is designed it should work, at least in theory. Did that work for you?

    Cheers!

    – Brook

    in reply to: Object tribe_events_linked_posts is undefined. #1131817
    Brook
    Participant

    This reply is private.

    in reply to: Date search doesn't work #1131816
    Brook
    Participant

    Thank you for getting back!

    I investigated some things in your theme and think I found a simple CSS solution that will get the two working together:

    .datepicker.dropdown-menu {
    z-index: 1009 !important;
    }

    You can insert that in any of your theme’s CSS files. Or, if that is not something your familiar with another super easy way to do this is to download and install the plugin Simple Custom CSS and then paste the above inside of the plugin, and hit Update. Now go back to the problem page, and click Refresh. Does it work now?

    Cheers!

    – Brook

    Brook
    Participant

    Woopsie! I was specifically try to avoid that.

    You might try this CSS instead. It’s only hiding the duplicate in my tests, so the other views continue to show:

    div#tribe-community-events .tribe-events-before-html, div#tribe-community-events .tribe-events-after-html { display: none; }

    • Brook
    in reply to: Object tribe_events_linked_posts is undefined. #1131712
    Brook
    Participant

    Howdy Jake,

    I would love to help you with this.

    The linked posts that is talking about are posts like the Organizers and Venues. These are their own post_type, but obviously they are attached (linked) to the main Event post type.

    It would seem that your error is indicating that on your site there are no linked posts present. An odd thing indeed.

    I appreciate your debugging thus far. Good call on trying to rename tribe-events. Just a quick tip, if you are ever trying to debug a JavaScript file you can set SCRIPT_DEBUG to true in your wp-config.pnp to make all minified files load the nonminified versions.

    Could you take the debugging one step further for me and do a full conflict test? This guide walks you through how to test for a conflict, and then identify what is conflicting.  I am thinking there must be something somewhere causing no linked posts to appear, hopefully that will help 0 in on the cause and thus help find a fix.

    Cheers!

    – Brook

    Brook
    Participant

    Howdy Catalina,

    I would love to help you with this.

    I need to put same texte/ image before the calendar and I don’t know how. Event page is a special page and it is not a create as the others pages – visible on the wordpress tools….

    I know. WordPress makes it very easy to edit regular pages, but any Archive pages it creates are basically impossible to edit without code, and of course our page is a WP Archive page.

    Can I have a Shortcode for the calendar with view “list” which I can add it on a page after my texte?

    We are working on adding something like this in the future, but it won’t do you any good right now.

    I am not use with the code …. ;(

    Hehe, no worries there. We do our best to provide tools to make this happen in spite of the lack of WP Tools available. To that end have you seen the “Add HTML before event content”  field found in WP-Admin > Events > Settings > Display  ? That allows you to add text and images above each of the calendar pages. Does that do what you want?

    Cheers!

    – Brook

    in reply to: Display duplicated events on single event #1131704
    Brook
    Participant

    Howdy Frank,

    That’s a great question. I was not sure of the top of my head if WP_Query  (which powers tribe_get_events() ) allows you to query by post_title or not. I don’t see anywhere that it has this capability. It does allow you to query by slug, but that won’t help here since each of those posts will have a different number appended to their slug.

    We actually have a bit of code we use to do this elsewhere in the plugin that looks like it might fit your needs. This is taken from Tribe__Events__Amalgamator::get_posts_with_title()

    	function get_posts_with_title( $title, $type ) {
    		global $wpdb;
    		$sql   = "SELECT ID FROM {$wpdb->posts} WHERE post_type=%s AND post_title=%s ORDER BY ID ASC";
    		$sql   = $wpdb->prepare( $sql, $type, $title );
    		$posts = $wpdb->get_col( $sql );
    
    		return $posts;
    	}

    Using that could output each of the posts on any page, including  the single events ones. If you’re wondering what the $type is it should be ‘tribe_events’. Does that do what you wanted?

    Cheers!

    – Brook

    Brook
    Participant

    Howdy Frank,

    I would love to help you with this as much as I can. I’m afraid I don’t have good news those, if you are not extremely knowledgeable on WP queries this is basically impossible. In order to do what you want you will in many ways be building the ability for recurring events to have a separate ticket per recurrence. That is a feature we have been working on for months, it is no small feat to build.

    If you have the requisite knowledge you would basically want to to connect all of the events somehow, perhaps with a custom field where each event in the series shared a value. Then you would modify the WP Queries that power our views via the usual pre_get_posts and probably also the WP_Query  where filters — no small feat at all. That will take a huge amount of trial and error to build this out and account for all the quirks associated with complex event queries. But eventually you could hide all but the first occurrence of the series.

    I wish I had better news on that front. The one bit of good news I do have is that we are working to make it so that recurring events can naturally support a new set of tickets for each recurrence, so in the future it sounds like what you’re trying to accomplish will just be a baked in feature. 🙂 All you will have to do is update. We do not yet have an ETA on this.

    Please let me know if you have any questions. Cheers!

    – Brook

    in reply to: List of Views in Month Error Pt Deux – 4.2.1 #1131687
    Brook
    Participant

    Thank you very much for sharing the log Heather. This is super useful info. I am sorry this issue was still mainfesting, but using the data you’ve shared we’ll reopen the issue surrounding this and see what’s up. I’ll get back to you with what we find or once we have a fix available. Let me know if you have any questions in the mean time.

    Cheers!

    – Brook

    in reply to: Broke recurring series, now location doesn't show #1131686
    Brook
    Participant

    Thanks for your patience Jim. Sorry for the mixup.

    I have been trying to recreate this problem on my testing servers, but I have not been able to. To be honest I am not sure what you’re “doing wrong” if anything. But, I have some ideas on some tests we could do to learn more.

    Could you try the following:

    1. Activate Pro
    2. Create a new test event with 3 recurrences and select any old venue/recurrence pattern.
    3. Go back to the events List
    4. Find the middle recurrence of that event, click Edit Single, breaking it from the series.
    5. Change the Venue, hit Update.

    Now I have a couple of questions I am hoping you could answer:

    • What happens when you do the above, does this new event show a different venue as expected? If not, can you link me to the event page ?
    • I notice that your site currently has pro deactivated. Have you deactivated Pro before? Have you been deactivating/reactivating it during your tests?

    Cheers!

    – Brook

    Brook
    Participant

    That’s good news Tac.

    I just updated it to be compatible with the 4.2.1 version of our plugins we released this week. This is still very much a beta. Especially because I have not tested split payments yet. Please let me know if you discover any issues. I ran a number of test orders and it was working great thus far. But since it was just myself testing and not our usual rigorous process/team of QA testers…

    tribe-snippet-ct-per-ticket-fee

    Download that file and install it like any other plugin. And it will start converting the Flat fee from a per event basis to a per ticket one.

    Cheers!

    – Brook

    in reply to: Broke recurring series, now location doesn't show #1131529
    Brook
    Participant

    Jim I am sorry, I have been responding to the wrong topic. I was tabbing back and forth between another persons issue and their topic, and accidentally tabbed to yours twice. I just trashed the erroneous responses and am investigating your actual issue now.

    • Brook
    Brook
    Participant

    Howdy Chris,

    That does certainly shed light things and I appreciate the elaboration.

    Basically though, this is not a bug. The behavior you’re seeing is the intended behavior of our program. Your argument is a good example of why it might not be the most useful behavior in common circumstance. And that is something we’d like to consider further. One thing that can really help that happen as fast as possible is if you add this as a feature request: UserVoice (feature suggestion page for The Events Calendar)

    But for now our application is designed for folks who would expect deleted orders, which completed all the way through and thus truly were sold, to be listed in the sold counts. This behavior is probably most useful for folks who don’t do test orders on their own events, which is by far going to be the majority of our customers. A lot of folks delete orders or attendees from the list simply to hide them for one reason or another, but they are still going to to be attending the event. But even still I would not be surprised if a good chunk of event managers would prefer your suggested way of going about this. Hence why I think this would make a great feature/enhancement suggestion.

    Please let me know if you have any followup questions. Cheers!

    – Brook

    in reply to: Customizable Post Purchase/RSVP Confirmation #1130782
    Brook
    Participant

    Howdy Andrea,

    We do not have any settings or CMS for modifying that. The closest you will get to a CMS is uing the snippet I shared to forward users to a  page you’ve created in WordPress.

    Using third party plugins like Say What?  you can alter the wording of most anything in WordPress, including our plugin. There would be no need for inserting code. But it is limited solely to swapping out one phrase for another, it does not allow you to modify the look of it at all.

    Please let me know if I can be of further help. Cheers!

    – Brook

    in reply to: Recurring Events on the same day many times over #1130780
    Brook
    Participant

    That was a good plan. I have seen these run amok once or twice but so far it has not been a recurring issue for people that saw it one time. This very likely seems like an extraordinarily rare circumstance that causes it to happen, perhaps like a server reboot or something while it’s still adding recurrences? Who knows.

    I’ll leave this topic open for a couple of weeks though just in case it crops up again. Thanks for getting back!

    • Brook
Viewing 15 posts - 916 through 930 (of 4,796 total)