Brook

Forum Replies Created

Viewing 15 posts - 3,121 through 3,135 (of 4,796 total)
  • Author
    Posts
  • in reply to: Issues with publish date on RSS Feed #934889
    Brook
    Participant

    Hello 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!

    in reply to: E-mail doesn't contain PDF attachments #934882
    Brook
    Participant

    I 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

    in reply to: Location search doesn't work #934879
    Brook
    Participant

    Hello 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 view

    This 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

    in reply to: Delete all records because of duplication bug, pt 2 #934874
    Brook
    Participant

    Thanks 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

    Brook
    Participant

    Howdy 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’ =&gt; ‘tribe_events’,
    ‘child_of’ =&gt; 7,
    ));
    foreach($categories as $childcat) {
    echo $childcat-&gt;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

    in reply to: Issues with publish date on RSS Feed #933925
    Brook
    Participant

    Thanks 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) &amp;&amp; $post-&gt;post_type == TribeEvents::POSTTYPE &amp;&amp; is_feed() &amp;&amp; $gmt ) {
    $time = tribe_get_start_date( $post-&gt;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

    in reply to: Issues with publish date on RSS Feed #933926
    Brook
    Participant

    [comment deleted]

    in reply to: WPDM and ECP – Conflict and Harmony #933921
    Brook
    Participant

    Thanks. 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

    in reply to: How to echo "Events URL slug" in wordpress page templates? #933919
    Brook
    Participant

    Excellent. Happy to hear that. – Brook

    Brook
    Participant

    Thanks 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

    in reply to: Next Month Link #933917
    Brook
    Participant

    It 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

    in reply to: Why does my event say "Free" next to the title? #933916
    Brook
    Participant

    Happy to hear that, Tom. Thanks for the update.

    Are you seeing that it is now fixed as well, unityboulder?

    – Brook

    in reply to: Customization Help #933915
    Brook
    Participant

    Thanks Nick. Let us know if you ever need anything else. Cheers!

    – Brook

    in reply to: E-mail doesn't contain PDF attachments #933850
    Brook
    Participant

    My 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

    in reply to: Customization Help #933120
    Brook
    Participant

    I 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

Viewing 15 posts - 3,121 through 3,135 (of 4,796 total)