Forum Replies Created
-
AuthorPosts
-
Rob
MemberThanks 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.
Rob
MemberExcellent. 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.
Rob
MemberHi 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.
October 26, 2011 at 4:36 pm in reply to: Bug: Custom Event Field – Dropdown with just numbers as values display issue #10205Rob
MemberAwesome! We’re pushing it out tomorrow (Thursday) morning.
Rob
MemberHey 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.
October 26, 2011 at 4:33 pm in reply to: Object of class WP_Error could not be converted to string #10203Rob
MemberHey 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.
Rob
Member🙂 Always happy to help. If anything else arises going forward, just holler.
Rob
MemberHey, 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?
Rob
MemberExcellent! 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.
Rob
MemberHi 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?
Rob
MemberHey 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.
Rob
MemberAh, 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.
Rob
MemberHey 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!
Rob
MemberHi 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.
October 26, 2011 at 4:15 pm in reply to: Creating a drop down event category search on the front end #10193Rob
MemberWeird. 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.
-
AuthorPosts
