Rob

Forum Replies Created

Viewing 15 posts - 3,991 through 4,005 (of 4,107 total)
  • Author
    Posts
  • in reply to: Header/Footer Injection #10208
    Rob
    Member

    Thanks Nick. That’s a good question, whether it’s possible to switch on other plugins to work here. My guess is you’d have to do some hackery to make that happen but admittedly this is outside of my area of expertise. Let me get our developer John to take a look and share his thoughts.

    in reply to: Event Calendar Widget — mouseover bug #10207
    Rob
    Member

    Excellent. We’re dropping the code with that widget fix tomorrow (Thursday), so let me know if that doesn’t fix it upon upgrading and I can keep looking into it for you.

    in reply to: Slug for venue #10206
    Rob
    Member

    Hi Julien. Changing the slug for venues isn’t unfortunately doable at this point; but what you added here is a nice suggestion that I’ve filed for possible inclusion as we build out a future 2.x release.

    Frontend organizer pages don’t exist at this point. They may at some point down the road but it’s not on the immediate roadmap.

    Rob
    Member

    Awesome! We’re pushing it out tomorrow (Thursday) morning.

    in reply to: Comments on Single Event – 404 Error #10204
    Rob
    Member

    Hey Bruce, I’m looking into this today and will follow-up on your email after I finish hitting the forum.

    Cynthia: I think the problem Cindy was having was just that comments weren’t displaying in a given template (fixing that for 2.0.1) and that they weren’t enabled accordingly. Since hers wasn’t an error involving a 404 message best I could tell.

    in reply to: Object of class WP_Error could not be converted to string #10203
    Rob
    Member

    Hey Anthony. That’s definitely bizarre; if you send an email to rob at tri.be that references this thread (with link) and includes the screenshot, I’ll do what I can to assist.

    in reply to: Demo Q & How to Disable Plugin on Venue View #10202
    Rob
    Member

    🙂 Always happy to help. If anything else arises going forward, just holler.

    in reply to: bug? grid -> day view #10201
    Rob
    Member

    Hey, happy to help with this. But I just checked and it looks like days 1-9 are all loading without issue on my end. Are you still having problems?

    in reply to: Making video bigger #10200
    Rob
    Member

    Excellent! You’ve got it down, good sir. Glad to see you got this resolved. If anything else arises give me a shout and I’ll do what I can to assist.

    in reply to: Problem with WP Menu on the events page #10199
    Rob
    Member

    Hi Julien. I can see the first issue you’re having, yes. Is it possible that’s a conflict with your theme? Would be interested to see what happened if you reverted this back to the 2011 theme in English (non-translated). Just to see if it’s a conflict with either the theme or the translation.

    Not sure I understand regarding the second point. Can you provide steps to recreate?

    in reply to: Only Show Todays Events in Widget #10197
    Rob
    Member

    Hey there. As it stands, that’s not doable out of the box – you could use the “Next Event” widget to accomplish something similar, but the widget would have to be modified in order to just show today’s events. Sorry I couldn’t offer up more here; if you need more on this let me know.

    in reply to: Display events on homepage #10196
    Rob
    Member

    Ah, glad to see you got it solved. You posted these messages between the hours I don’t usually come on the forum – if any other issues arise, just give us a shout (with the understanding it may take up to 24 hours for a response) and we’ll try to assist.

    in reply to: Calendar View Problem and Google Import? #10195
    Rob
    Member

    Hey folks. If you check out this thread (https://theeventscalendar.com/support/forums/topic/integration-with-gravity-forms/), it should give you what you need to make this happen. Cheers!

    in reply to: Integration with Gravity Forms? #10194
    Rob
    Member

    Hi folks. It looks I spoke with John about this today and it looks like you can get Tim’s original tutorial working by adding this code to the functions.php file:

    add_action(‘save_post’, ‘save_tec_event_meta_from_gravity’, 11, 2);
    function save_tec_event_meta_from_gravity($postId, $post) {
    if( class_exists(‘TribeEvents’) ) {
    // only continue if it’s an event post
    if ( $post->post_type != TribeEvents::POSTTYPE || defined(‘DOING_AJAX’) ) {
    return;
    }
    // don’t do anything on autosave or auto-draft either or massupdates
    if ( wp_is_post_autosave( $postId ) || $post->post_status ‘auto-draft’ || isset($_GET[‘bulk_edit’]) || $_REQUEST[‘action’] ‘inline-save’ ) {
    return;
    }
    if( class_exists(‘TribeEventsAPI’) ) {
    TribeEventsAPI::saveEventMeta($postId, $_POST, $post);
    }
    }
    }

    If anyone has any problems with this or find it non-functional (we tested today and it worked without issue), please let me know.

    in reply to: Creating a drop down event category search on the front end #10193
    Rob
    Member

    Weird. Does the same behavior happen if you revert to the default 2011 theme (not saying you need to do this permanently – just to test)? When I attempt that on my default 2011 site it works without issue.

    Let me know. If that’s not the case, might be a good idea to email me (rob at tri.be) with some backend creds for the site and I can take a look directly.

Viewing 15 posts - 3,991 through 4,005 (of 4,107 total)