Forum Replies Created
-
AuthorPosts
-
Brook
ParticipantHello Cfc,
That is basically exactly what I mean. However, upon further inspection I realized that more is required. You would actually have to convert the date value’s timezone before passing it mysql2date(), which expects the timezone to be GMT. That is the crux of the issue.
This will require a little more development. I might be able to write something up tomorrow, but it’s also possible that in the end we will have to wait for this bug to be patched in the plugin. I will let you know tomorrow.
Cheers!
Brook
ParticipantI am terribly sorry for the inconvenience Arnold. I hope the refund will provide some solace.
Since you’ve marked this resolved I will now archive it. I hope the rest of the site goes smooth. Cheers!
– Brook
Brook
ParticipantHello again!
Brook, I need faster reply. Maybe email?
I understand that. Actually our fastest replies are through the forums. But, we do not work on the weekends, so responses might come as late as Monday in the US timezone for any questions asked on Friday.
Why Kraków is enable in map view?? and Chrzanów, Trzebinia is disable??
I am very sorry Subforma. I am having trouble understanding your English. I do not understand these questions.
and why only one adress from Kraków is on map?
ul. Skarżyńskiego 1 Kraków 31-866 Polska <- find in map
ul. Dobrego Pasterza 128 Kraków 31-416 Polska <- don’t find in map viewThis view only shows map markers for events within the list. There are no events for dobrego in the list. But if you change pages, or enter a different search term, those events might appear and so will their markers.
I can see your problem with location search. The list is not being populated with data, even though Google is sending a response with the appropriate data. This means that you are not facing a Google API limitting error. Further there are no errors in the JS console. This leaves basically only one possibility, your theme and or your plugin are sadly conflicting with The Events Calendar.
Can you confirm that you have disabled all other plugins, switched themes to Twenty Fourteeen, and then tried to do multiple location searches. And that when you did this, the location search results drop down appeared?
Thanks for updating us!
– Brook
January 19, 2015 at 2:01 pm in reply to: Delete all records because of duplication bug, pt 2 #934874Brook
ParticipantThanks for the update David. You are welcome for the help. And I appreciate your understanding of the situation surrounding that bug. I am sorry it has affected you so severely.
I will await your reply. Cheers!
– Brook
January 16, 2015 at 8:18 pm in reply to: How to display the child category of a specific parent category… #933928Brook
ParticipantHowdy Gabriel,
What do you exactly mean with it? I try this, but it dont work
You got it right, you set the taxonomy. But, then you didn’t call that variable in the rest of your code. Nor did you set child_of. For what it’s worth, when you are writing in a programming language usually you need to either be a programmer of hire one. The support we offer here is meant to be a general overview as outlined in our scope of support. We do not provide specific code to your site. It is up to you to turn the overview into working code.
That said sometimes I can sneak a little site specific code past my manager. I have not tested this and it might take a little tweaking, but this is a really good start:
[php]
$categories = get_categories(array(
‘taxonomy’ => ‘tribe_events’,
‘child_of’ => 7,
));
foreach($categories as $childcat) {
echo $childcat->cat_name;
}
[/php]I also just realized that my link above doesn’t work. This might help you to further your knowledge of that function: http://codex.wordpress.org/Function_Reference/get_categories
Hopefully that helps. Cheers!
– Brook
Brook
ParticipantThanks cfcpa. Upon further experimentation I have been able to reproduce this issue as a bug in our plugin. I am going to get this logged so the developers can fix it.
In the mean time you could fix this by attaching a function to ‘get_post_time’ that behaves like our function ‘event_date_to_pubDate’:
[php]function event_date_to_pubDate( $time, $d, $gmt ) {
global $post;if ( isset($post) && $post->post_type == TribeEvents::POSTTYPE && is_feed() && $gmt ) {
$time = tribe_get_start_date( $post->ID, false, $d );
$time = mysql2date( $d, $time );
}return $time;
}[/php]Only set the variable $gmt to your local timezone by default.
I am sorry that you are experiencing a bug. Let me know if you have any questions. Thanks!
– Brook
Brook
Participant[comment deleted]
Brook
ParticipantThanks. Rusel from their team reached out this afternoon. He provided what I need to move forward. These sorts of issues can take a while to investigate and get to the bottom of. So please do not expect a response and fix by the next business day, which is what we usually strive for. But I will keep you updated and let you know what we find. Let me know if you have any questions in the mean time. Thanks!
– Brook
January 16, 2015 at 7:49 pm in reply to: How to echo "Events URL slug" in wordpress page templates? #933919Brook
ParticipantExcellent. Happy to hear that. – Brook
January 16, 2015 at 7:48 pm in reply to: Selecting different month = Blank Calendar, no events displayed #933918Brook
ParticipantThanks Mary. According to the MaxGalleria plugin author this issue should now be fixed with the latest release of their plugin as well.
I am going to archive this since you’ve marked it resolved. I appreciate your helping us find a conflict and get it sorted with the plugin author. Cheers!
– Brook
Brook
ParticipantIt is worth mentioning that we did specifically fix this issue in 3.9.1. While QA’ing 3.9.1 we did find a similar issue that we plan to fix in the near future, but were not able to squeeze a fix for that into the maintenance release.
Let us know if need anything else, Kevin. Thanks!
– Brook
Brook
ParticipantHappy to hear that, Tom. Thanks for the update.
Are you seeing that it is now fixed as well, unityboulder?
– Brook
Brook
ParticipantThanks Nick. Let us know if you ever need anything else. Cheers!
– Brook
Brook
ParticipantMy apologies. That was our mistake. I updated the wording on that page to reflect how the plugin now operates (no PDFs). I appreciate your bringing this to our attention, I just wish it wasn’t in such unfortunate circumstance that you became aware of it.
I notified our support manager about this issue, and he will review it shortly.
– Brook
Brook
ParticipantI wish I could be of more direct help, but without knowing your theme’s code my hands are completely tied. That said I can tell you exactly what you should ask the theme author:
How would I add a featured/header image to WP Custom Post Type archive page?
It’s literally that simply. They will tell you how. They might even have a FAQ about it. All you will need to know is the name of the Custom Post Type, which is “tribe_events”.
I wish you the best! Let me know if there is more I can do inspite of my handicap about not knowing your theme’s code. Thanks!
– Brook
-
AuthorPosts
