Forum Replies Created
-
AuthorPosts
-
Brook
ParticipantThat’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
Brook
ParticipantThis reply is private.
Brook
ParticipantThank 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
June 24, 2016 at 1:02 pm in reply to: Add Event Screen shows tribe_events_before_html + tribe_events_after_html twice #1131725Brook
ParticipantWoopsie! 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
Brook
ParticipantHowdy 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
June 24, 2016 at 12:11 pm in reply to: Dispaly text / image before the calendar on the event page #1131707Brook
ParticipantHowdy 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
Brook
ParticipantHowdy 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
June 24, 2016 at 11:53 am in reply to: How to display only one of duplicated events (duplicate-tec-event plugin) ? #1131700Brook
ParticipantHowdy 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
Brook
ParticipantThank 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
Brook
ParticipantThanks 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:
- Activate Pro
- Create a new test event with 3 recurrences and select any old venue/recurrence pattern.
- Go back to the events List
- Find the middle recurrence of that event, click Edit Single, breaking it from the series.
- 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
June 24, 2016 at 11:16 am in reply to: How to make flat fee to charge per ticket sold instead of each event in an order #1131671Brook
ParticipantThat’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
Brook
ParticipantJim 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
June 22, 2016 at 11:08 pm in reply to: Urgent Help Needed: Ticket Sold Counts Not Correct and Can't Launch Site #1130784Brook
ParticipantHowdy 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
Brook
ParticipantHowdy 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
Brook
ParticipantThat 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
-
AuthorPosts
