Jonah

Forum Replies Created

Viewing 15 posts - 2,386 through 2,400 (of 4,001 total)
  • Author
    Posts
  • in reply to: Adding an "Add your event" button #22566
    Jonah
    Participant

    Hi Selig,

    You would have to add the button yourself and you can do so by editing the view template for either list or the gridview. To edit the list template, make a copy of /wp-content/plugins/the-events-calendar/views/list.php and place in an ‘events’ folder in your theme. Then, make whatever changes you want. To the edit gridview, make a copy of /wp-content/plugins/the-events-calendar/views/grdiview.php and again place in the ‘events’ folder in your theme and make whatever changes you want.

    I hope that helps!

    – Jonah

    in reply to: Events List page issue #22565
    Jonah
    Participant

    Hi Carl,

    You need to clear the floated elements in the list. My suggestion would be to add another div around each list item and add a clear: both rule in the CSS to clear the floated elements.

    I hope that helps!

    – Jonah

    Jonah
    Participant

    Sounds good Richard 🙂

    in reply to: Conflict with Theme #22545
    Jonah
    Participant

    Hi David,

    We had another user provide a potential fix for this that let’s you still use the other template options. To try it out, make a copy of /wp-content/plugins/the-events-calendar/views/table.php and place in an ‘events’ folder in your theme. Then paste in the following code before the $monthView variable code on line 32:

    if( !$eventPosts ) {
    $eventPosts = new stdClass();
    $eventPosts->EventStartDate = '2012-'. $month .'-01 00:00:00';
    $eventPosts->EventEndDate = '2012-'. $month .'-01 00:00:00';
    $eventPosts = array( $eventPosts );
    }

    //place the above code before this...
    $monthView = tribe_sort_by_month( $eventPosts, $tribe_ecp->date );

    Try that out and let me know how it goes.

    Cheers,
    Jonah

    in reply to: CSS/JS not working correctly #22543
    Jonah
    Participant

    Hi James,

    Yes, wp_head() is an essential function for any plugin because a lot of plugins hook into that function for other functions they depend on, so it’s best to not remove that. I’m glad you were able to figure it out! Let us know if there’s anything else you need help with.

    Cheers,
    Jonah

    in reply to: Display events from a specific day #22542
    Jonah
    Participant

    Hi Damian,

    Glad you figured it out! Let us know if there’s anything else you need help with.

    Cheers,
    Jonah

    in reply to: CSS/JS not working correctly #22474
    Jonah
    Participant

    Hi James,

    Sorry to hear about the issues. You have a script error on the page so something is conflicting with our plugin. Please try deactivating all other plugins to see if that helps and if not try reverting to the Twenty Eleven theme to see if it’s an issue with your theme. Let me know how that goes.

    Thanks,
    Jonah

    in reply to: Custom / Additional fields class #22472
    Jonah
    Participant

    No problem David, closing out this thread 🙂

    in reply to: Single Venue Display #22471
    Jonah
    Participant

    Hi Tara,

    Venue’s don’t actually have a website, the event Organizer does. If you want to show the Organizer info on single venue’s what you’ll need to do is make a copy of /wp-content/plugins/events-calendar-pro/views/single-venue.php and place in an ‘events’ folder in your theme. Then, open up the file and add the template tags to display the organizer info. If you take a look at our documentation for Organizers you’ll find all the template tags you should need: https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-organizer-functions/

    I hope that helps!

    – Jonah

    in reply to: Upgrade from Events Calendar Premium 1.0 Problem #22470
    Jonah
    Participant

    Hi Steve,

    Sorry to hear about the troubles. Looks like your site is down right now, you must be working on it… Ideally the migration should be run from version 1.6.5 to 2.0 and you should see a Migrate Data button in the settings page allowing you to migrate all the data. Here is a tutorial that might help you with the migration: https://theeventscalendar.com/migrating-from-events-calendar-1-6-5-to-2-0/

    Please check that out and make sure you are migrating from 1.6.5 to 2.0 and let me know if you are still having issues.

    Thanks,
    Jonah

    in reply to: Conditional tag to test if is in list view? #22463
    Jonah
    Participant

    Hi David,

    That should return true. If not, try:

    if($query->query_vars['eventDisplay'] == 'upcoming' && !is_tax(TribeEvents::TAXONOMY) || $query->query_vars['eventDisplay'] == 'past' && !is_tax(TribeEvents::TAXONOMY) && $query->query_vars['post_type'] == TribeEvents::POSTTYPE && empty( $query->query_vars['suppress_filters'] ) ) {

    I hope that helps!

    – Jonah

    in reply to: Remove Comments from the Add and List page #22461
    Jonah
    Participant

    Hi Carlos,

    The above code will likely not work with the DISCUS comment system and you will need to figure out how to hide it by targeting the div containing DISCUS instead.

    – Jonah

    in reply to: Display events from a specific day #22440
    Jonah
    Participant

    Hi Damien,

    Something like this should work for you: https://gist.github.com/3148810 – you’ll probably want to adjust the HTML but this query will only query events for today 🙂

    Let me know if you need anything else.

    – Jonah

    in reply to: Recurring Events Not Showing Up #22439
    Jonah
    Participant

    Hi Zeyad,

    Make sure you have the Events Calendar PRO plugin installed and activated, otherwise you are not going to see the recurrence options for your events. Please check to see if you have this in place and get back to me.

    Thanks,
    Jonah

    in reply to: User Submissions #22438
    Jonah
    Participant

    Hi Amanda,

    We have a plugin for that, it’s right here: https://theeventscalendar.com/wordpress-community-events/

    Is that what you’re looking for?

    – Jonah

Viewing 15 posts - 2,386 through 2,400 (of 4,001 total)