Jonah

Forum Replies Created

Viewing 15 posts - 2,026 through 2,040 (of 4,001 total)
  • Author
    Posts
  • in reply to: Events Calendar works, Pro doesn't #26366
    Jonah
    Participant

    Hey Brad,

    Have you tried changing your Event Template setting in Events > Settings > Template?

    – Jonah

    in reply to: 600 Venues #26362
    Jonah
    Participant

    That’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…

    in reply to: 600 Venues #26353
    Jonah
    Participant

    Hi 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

    in reply to: Event Details Page Formatting #26343
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Embed Google maps #26341
    Jonah
    Participant

    Hi Mathew,

    Did you check these options in Events > Settings > General? http://cl.ly/image/0k250b3c273J

    – Jonah

    in reply to: Search Results are Displayed in Tribe Events Template #26336
    Jonah
    Participant

    Sounds good Ed, I’ll keep an eye out for the link.

    Thanks,
    Jonah

    in reply to: 600 Venues #26335
    Jonah
    Participant

    Hi 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

    in reply to: 600 Venues #26296
    Jonah
    Participant

    You’re welcome Sheila! Let me know how things go and if you need any more help with this.

    – Jonah

    in reply to: Search Results are Displayed in Tribe Events Template #26280
    Jonah
    Participant

    Hi Ed,

    Do you have a link of an example I can take a look at?

    Thanks,
    Jonah

    in reply to: Can't get events to show in Advanced Widget #26279
    Jonah
    Participant

    Hi 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

    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: events.js #26277
    Jonah
    Participant

    Hi 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,
    Jonah

    in reply to: Google Calendar import #26269
    Jonah
    Participant

    Hey Ken,

    Try this updated code: https://gist.github.com/3854047.

    – Jonah

    in reply to: Google Calendar import #26259
    Jonah
    Participant

    Hey 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

    in reply to: 600 Venues #26250
    Jonah
    Participant

    Hi 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/ozvpyxi

    Does 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

Viewing 15 posts - 2,026 through 2,040 (of 4,001 total)