Jonah

Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 4,001 total)
  • Author
    Posts
  • in reply to: full width for events pro #27375
    Jonah
    Participant

    Sweet, let us know if there’s anything else we can help with.

    Cheers,
    Jonah

    in reply to: Missing Thumbnail Metabox #27361
    Jonah
    Participant

    Hi Torben,

    Try looking in your Screen Options panel in the upper right corner when adding/editing an event and make sure “Featured Image” is checked. That or try adding this to your functions.php file:

    add_theme_support( 'post-thumbnails', array( 'tribe_events' ) );

    Let me know whether or not that helps.

    – Jonah

    in reply to: Disable organizer and venue options #27360
    Jonah
    Participant

    Hi Sandro,

    Your best bet is to just hide things with CSS in the admin. You can do that with one of these snippets:
    http://css-tricks.com/snippets/wordpress/apply-custom-css-to-admin-area/ or http://wp-snippets.com/custom-admin-css/ – then just find the elements you want to hide and use display: none to hide them. http://wordpress.org/extend/plugins/adminimize/ might also help in hiding the actual menu items.

    I hope that helps!

    – Jonah

    in reply to: Event Payment Options #27347
    Jonah
    Participant

    Hi Neil,

    Thanks for your thoughts and suggestions. If you have Gravity Forms you should be able to accomplish this pretty easily using this addon for GF: http://wordpress.org/extend/plugins/gravity-forms-custom-post-types/ – that will enable you to populate a form drop down with a custom post type.

    Does that help?

    – Jonah

    in reply to: full width for events pro #27334
    Jonah
    Participant

    Hi Bess,

    Did you try changing the Events Template in Events > Settings > Template?

    – Jonah

    in reply to: Event Payment Options #27333
    Jonah
    Participant

    Hi Neil, sorry for not being specific enough.

    1. The ‘events’ folder goes in your active theme directory.
    2. No. Only if you create another page template within your theme. Read more here: http://codex.wordpress.org/Pages#Page_Templates
    3. Hmmm, I would suggest taking a look at http://www.advancedcustomfields.com/ – it’s a very powerful custom fields plugin for WordPress that let’s you setup some very cool custom field inputs for events, pages, posts, etc. in a number of different ways. I’m not exactly sure what you need to do for each event but would a simple text input be enough so a link could be pasted in when adding an event that would be the link to the Event Registration page?

    – Jonah

    in reply to: Create category archive list on one page #27317
    Jonah
    Participant

    Hi Star,

    Sure, one way you could do this is to modify the query in a category so that x amount of posts are shown per page (or all posts on one page). To do this you would just add this bit
    of code to your theme’s functions.php file:

    //show all events on the events list pages when viewing an event category
    add_action( 'pre_get_posts', 'show_all_events' );
    function show_all_events( $query ) {
    if ( $query->query_vars['eventDisplay'] == 'upcoming' || $query->query_vars['eventDisplay'] == 'past' && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && !is_tax(TribeEvents::TAXONOMY) && empty( $query->query_vars['suppress_filters'] ) ) {
    $query->set('posts_per_page', -1);
    }
    return $query;
    }

    Does that help?

    – Jonah

    Jonah
    Participant

    Hi Michael,

    No, I’m not sure but your the only one I’ve seen ask for this so far and it seems fairly low priority with everything else we’ve got going on. Plus if we changed it there’s likely going to be some people who like it ordered by date instead of by name.

    – Jonah

    in reply to: Google map only showing button, not embed in Pro version? #27248
    Jonah
    Participant

    Hi Catherine,

    Try going into Events > Settings and unchecking the Google Maps option, saving, rechecking it and saving again. Then, go into the event you want the map to show on and make sure the “Show Google Map” option is checked.

    – Jonah

    in reply to: Calendar Disables Submenu #27247
    Jonah
    Participant

    Hi Mathew,

    What sub menus are you talking about? Can you provide an example of what should be where?

    Thanks,
    Jonah

    in reply to: Return to list #27245
    Jonah
    Participant

    Hi Jason,

    You could change the back link in single.php to a simple javascript back link so it goes back whatever the previous page was instead of back to the list. To do this you would make a copy of /wp-content/plugins/the-events-calendar/views/list.php and place in an ‘events’ folder in your theme. Then find the back link on line 12 and modify the link with one of the following options: http://css-tricks.com/snippets/javascript/go-back-button/

    I hope that helps!

    – Jonah

    Jonah
    Participant

    Hi Michael,

    Thanks for the feedback. I’ve logged #1 as a bug and we’ll get it fixed in a future release. For #2 you could easily change this by adding something like this to your theme’s functions.php file: https://gist.github.com/3542941 – you’ll just need to change the post_type to “tribe_venues” and change the query arguments.

    I hope that helps!

    – Jonah

    in reply to: Can't increase number of events in loop #27241
    Jonah
    Participant

    Hi Krysia,

    I would suggest deactivating all other plugins and try reverting your theme to Twenty Eleven to see if it’s something with your theme that’s overriding this setting. If it is in your theme you’ll need to dig through and figure out what it is. Good luck and let us know what you find!

    – Jonah

    in reply to: Event Payment Options #27221
    Jonah
    Participant

    Hi Neil,

    You could simply add a PayPal or custom button linking to PayPal to your single event pages… The single event template is in /wp-content/plugins/the-events-calendar/views/single.php – just make a copy and place in an ‘events’ folder to make changes. You could dynamically set the cost with echo tribe_get_cost();

    Does that help?

    – Jonah

    Jonah
    Participant

    Hi Michael,

    The easiest way to do this is to use something like http://wordpress.org/extend/plugins/admin-menu-editor/ or http://wordpress.org/extend/plugins/adminimize/ to hide the menu item. Does that help?

    Cheers,
    – Jonah

Viewing 15 posts - 1,951 through 1,965 (of 4,001 total)