Forum Replies Created
-
AuthorPosts
-
Jonah
ParticipantHey Brad,
Have you tried changing your Event Template setting in Events > Settings > Template?
– Jonah
Jonah
ParticipantThat’s probably the best/easiest solution unless you get someone else to come up with something more robust. But again, it would most likely require hacking core files…
Jonah
ParticipantHi Sheila,
In order to get rid of the “Use New Venue” & “Use New Organizer” you’d have to modify core files and this is not recommended because you’ll lose your changes on the next update. Also, this drop down is used not only for the front end form but also for the backend form, so if you remove that option, it’s going to be removed in the backend too. You’d need to hack things more to get it to be only on the frond end. Your best bet is probably to hire someone because this is getting into things we can’t help with.
– Jonah
Jonah
ParticipantHi Matt,
The wrapping has to do with your theme’s CSS – you have this CSS on line 83 of your urban.css file:
div#content {
float: left;
width: 275px;
padding: 0;
margin: 0;
}
That’s setting the width of the div really narrow and causing the wrapping. You’ll need to change that to resolve the wrapping.For the error, try first setting your Permalinks to Postname in Settings > Permalinks. If that doesn’t work try deactivating all other plugins to see if there’s a conflict.
Let me know how that goes.
Thanks,
JonahJonah
ParticipantHi Mathew,
Did you check these options in Events > Settings > General? http://cl.ly/image/0k250b3c273J
– Jonah
October 9, 2012 at 7:17 am in reply to: Search Results are Displayed in Tribe Events Template #26336Jonah
ParticipantSounds good Ed, I’ll keep an eye out for the link.
Thanks,
JonahJonah
ParticipantHi Sheila,
Sure, you can do this. Just comment out this line like so in your events-meta-box.php override file:
//include( $venue_meta_box );
That will prevent the rest of the form from showing.– Jonah
Jonah
ParticipantYou’re welcome Sheila! Let me know how things go and if you need any more help with this.
– Jonah
October 8, 2012 at 12:57 pm in reply to: Search Results are Displayed in Tribe Events Template #26280Jonah
ParticipantHi Ed,
Do you have a link of an example I can take a look at?
Thanks,
JonahJonah
ParticipantHi Christopher,
The main thing I would look for is improper use of custom queries (like using query_posts or get_posts when WP_Query should be used) and/or the queries not being reset. Also, try turning WP_DEBUG on to see if there are theme errors that appear and if there are I would contact the theme author to see if they can be fixed because that could be the problem.
If you want, we can also take a quick look but no guarantees. Please email a copy of your theme to pro [at] tri [dot] be and reference this thread and attn. to me.
I hope that helps!
– Jonah
October 8, 2012 at 12:50 pm in reply to: Everything went crazy when I Updated to the newest release… WHY? #26278Jonah
ParticipantHi Robert,
Sorry to hear about any issues you may have had with the update. We are constantly improving and working on making the update process as smooth and error free as possible. It’s hard to say exactly what the problem may have been. Is there something specific you needed help with?
Cheers,
JonahJonah
ParticipantHi Ray,
Thanks for the suggestion and code. I’ve created a ticket for us to update and improve the script and once approved by the other developers should make it in to the next release. Thanks again!
Cheers,
JonahJonah
ParticipantJonah
ParticipantHey Ken,
Close… Try this: https://gist.github.com/3854047 – I think the only issue is you need to remove the parens for tribe_ical_feed_item in the add_filter function call.
– Jonah
Jonah
ParticipantHi Sheila,
Actually there is no easy way to adjust the post type directly through our plugin at the moment. You would need to modify core files and this is not recommended because your changes will be lost the next time you update. I’ll update/remove that FAQ since it doesn’t really apply anymore.
Back to the issue at hand… First, to hide the Venue form on the Community Submit Event form from non-admins you do the following. Make a copy of /wp-content/plugins/events-community/views/events-meta-box.php and place in an ‘events/community/’ folder within your active theme. Then find lines 89 – 120, this code deals with the Event Location display/form inputs. What you want to do is wrap this code in a conditional statement that says, only display this if the current user is an admin. You can do this with the following conditional:
if ( current_user_can('manage_options')) {}
So, you basically just need to wrap those lines of code inside that conditional statement and then the Event Location form will not display for any users that cannot manage options in the administration. Here’s a copy of the file with the modification in place: http://snippi.com/s/ozvpyxiDoes that help?
As far as deleting all the duplicate Venues… basically if a Venue is associated to an event and you delete it, only the Venue will be deleted not the event. Does that answer your question?
Let me know if you need anything else with this.
Thanks,
Jonah -
AuthorPosts
