Jonah

Forum Replies Created

Viewing 15 posts - 2,821 through 2,835 (of 4,001 total)
  • Author
    Posts
  • in reply to: Next Event Widget #19896
    Jonah
    Participant

    Hi Frank,

    Yes, you can make it so it shows two events. To do this it’s somewhat complicated but I’ve written a tutorial on it that can guide you through: https://theeventscalendar.com/how-to-completely-customize-widgets/

    The tutorial deals with the same widget and all you’ll need to change is the query parameter here from:

    $posts = tribe_get_events( 'eventDisplay=upcoming&numResults=1&eventCat=' . $category );

    …to:

    $posts = tribe_get_events( 'eventDisplay=upcoming&numResults=2&eventCat=' . $category );

    I hope that helps!

    – Jonah

    in reply to: Duplicate Event Category #19895
    Jonah
    Participant

    Hi Bob,

    Something sounds fishy here. Were you ever running any other event related plugin? It could be that that plugin, after removing it, did not delete all it’s data. Other things to check are:

    1. Are you running the latest version of WordPress.
    2. Are you running the latest versions of our plugins (2.0.6)
    3. Have you tried deactivating all other plugins to rule out a conflict?
    4. Have you tried reverting to the Twenty Eleven theme to see if it’s something with your theme?

    Try those steps and let us know what you find.

    Thanks,
    Jonah

    in reply to: Remove Category from Displaying in Event Listing #19894
    Jonah
    Participant

    Ok, that’s easy. Just make a copy of /wp-content/plugins/the-events-calendar/views/single.php and place in an ‘events’ folder in your theme. Then, find line 34 that has this code:

    tribe_meta_event_cats();

    …and remove that (including the opening and closing PHP tags.

    That should do it but let me know if you need anything else with this.

    Regards,
    Jonah

    in reply to: Calendar doesn’t fit page #19893
    Jonah
    Participant

    Hi Rough,

    For some reason your sidebar is still showing above the calendar. The easiest way to remove the sidebar is to just hide it on this page. You can do this with the following CSS:

    .events-gridview .sidebar2 {
    display: none;
    }

    You can add that to your themes style.css file. That should do it but let me know if you need anything else with this.

    Regards,
    Jonah

    in reply to: Events Calendar PRO displaying improperly #19892
    Jonah
    Participant

    Hi Marcos,

    I’ve just updated the ticket we’ve got on this issue to hopefully revive tracking down the bug and maybe bump up priority. It would help if you could send us a copy of the theme you are using so we can use that for testing. You can email to jonah [at] tri [dot] be

    Unfortunately outside of that there’s not a whole lot else I can do but bring it up with the team in a meeting tomorrow and see if we can focus some more on this.

    – Jonah

    in reply to: Separate Calendars #19891
    Jonah
    Participant

    Hi Charlie, separate calendars are already created by default for any event categories you have. For instance if you have a Conferences category you could go to: http://yoururl.com/events/category/conferences/ (substituting yoururl.com and events with your website URL and your events slug). To get others to that page just simply link to that category calendar page and you’re set. The WordPress custom menus make this really easy.

    Does that help?

    – Jonah

    in reply to: Changing Title Of Gridview? #19890
    Jonah
    Participant

    Hi John,

    I still don’t understand – how/why do you have individual calendar pages? How did you create these and how are they different? Some examples/code might be helpful. By default the calendar will show you the main calendar page which should always use “Events for May 2012” as the title tag and change depending on what month you are on. If you are on an event category, the category name will be appended to the title tag.

    I still need some more information.

    Thanks,
    Jonah

    in reply to: Add a ‘purchase tickets’ button to event-list-meta #19889
    Jonah
    Participant

    Hi Meg,

    To get a buy now button in the list just make a copy of /wp-content/plugins/the-events-calendar/views/list.php and place in an ‘events’ folder in your theme and make any changes you want within to add the button.

    For the Event List widget you’ll want to modify /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php – again make a copy of this and place in the ‘events’ folder in your theme directory and make any changes you want.

    I hope that helps!

    Cheers,
    – Jonah

    in reply to: Events Not Looking Pretty #19888
    Jonah
    Participant

    Glad to hear Meg! Let us know if you need anything else.

    Jonah
    Participant

    Hey Ross,

    It depends on if you want to just remove the whole Event Location and Event Organizer blocks altogether or need to keep specific fields. Can you be a little more specific about what you want to do?

    Thanks,
    Jonah

    in reply to: Month specific gridview title #19886
    Jonah
    Participant

    @Michelle – I’ve followed up via email so look for my reply there.


    @Javier
    – make sure the code uses single quotes and not apostrophes like so:

    add_filter('tribe_get_events_title', 'my_get_events_title');
    function my_get_events_title($title){
    if( is_tax() ) {
    return $title;
    } else {
    return 'My Title';
    }
    }

    in reply to: Event cost when not associating event with Eventbrite #19885
    Jonah
    Participant

    Hi Jeremy, my first question is why even use the Eventbrite addon? I’m not entirely sure why we don’t still allow the main plugins cost field to show with the EB addon activated, but it seems like you don’t even need the EB addon…

    in reply to: Next Event Widget #19880
    Jonah
    Participant

    Hi Frank,

    Unfortunately this is not currently available in the plugin and I’m not sure how to hack it to make it work. I’ve filed a ticked to have this fixed in an upcoming version but for now you’ll need to figure this out on your own.

    Sorry I can’t offer up more here.

    – Jonah

    in reply to: Events Calendar PRO displaying improperly #19878
    Jonah
    Participant

    Hi Marcos, we do still have an outstanding bug that involves this issue and unfortunately no fix yet. Have you tried switching the Events Template option in Settings > The Events Calendar > Template to one of the other options?

    – Jonah

    Jonah
    Participant

    Hi Lydia,

    Getting just the time to display is a little more complicated than we can help you with unfortunately. It becomes particularly tricky when events span multiple days because you would need to detect this separately.

    I can tell you what you need to edit to get this working though. The code you want to work with is in /wp-content/plugins/events-calendar-pro/views/events-advanced-list-load-widget-display.php lines 43-56.

    To remove the “All Day” just comment out line 49 like so:

    //echo ' ('.__('All Day','tribe-events-calendar-pro').')';

    I hope that helps! Sorry I can’t offer up more.

    – Jonah

Viewing 15 posts - 2,821 through 2,835 (of 4,001 total)