Geoff

Forum Replies Created

Viewing 15 posts - 8,146 through 8,160 (of 10,150 total)
  • Author
    Posts
  • in reply to: Why doesn't Month View default to List View on mobile? #946602
    Geoff
    Member

    Hey there, Lars–thanks for following up!

    I know you may disagree, but implementing your own custom development may have consequences that conflict with the core functionality of the plugin. I believe that is the case in this instance, as you’ve implemented a custom template for this view.

    I’m going to go ahead and close this thread since it seems we’ve supported this as far as we can.

    Cheers!
    Geoff

    in reply to: Display Dropdown is under event on week view #946525
    Geoff
    Member

    Hi there, Courtney!

    I can see how that might come up when the template has been customized, but it does not seem to come up in any other case.

    I’d venture to say that if the template is going to be customized, then the CSS can be customized as well to address it in those circumstances. In this case, you can target .#tribe-bar-views .tribe-bar-views-list in your theme’s style.css file to raise the z-index appropriately.

    Cheers!
    Geoff

    in reply to: recurring events #946521
    Geoff
    Member

    Hello there–thanks for getting in touch!

    We do offer a solution for recurring events, which is included in The Events Calendar PRO. The PRO version extends the free version of The Events Calendar to include additional functionality, recurring events being one of them.

    If you’re interested in learning more, here’s a handy tutorial on how recurring events work in The Events Calendar PRO.

    Cheers!
    Geoff

    in reply to: Page ID of pages outside the loop #946510
    Geoff
    Member

    Hello there, Nicola!

    Good question. The calendar at /events is actually a custom post type archive, so it technically does not have a Page ID.

    If you’re trying to exclude a widget from it, you can do so by target it as an archive rather than a page:

    <?php
    if ( is_post_type_archive("tribe-events") ) {
    // Remove the widget
    }
    ?>

    Cheers!
    Geoff

    in reply to: View Calendar gone on mobile #946508
    Geoff
    Member

    Hi there, Shanti! Thanks for getting in touch and sorry for the issue. Let’s see if we can identify what’s happening.

    I visited your site on an iPhone and it seems the View As options are properly working (screenshot). I was able to view all the available view options, select them, and the have the proper calendar load. Is it possible you have resolved the issue? Or perhaps you can provide me with a different link and screenshot where I can see what you’re describing.

    The City search also seemed to work properly for me. I searched for hikes in Whittier and Portland. In both instances, the correct events were returned and I was able to paginate through them using the Next Hikes link without returning to the full calendar. If you’re seeing more results than you would like, you can decrease the radius of the location search by heading to Events > Settings > General and changing the “Mao view distance limit” (screenshot) to a smaller number.

    I hope this helps!

    Cheers,
    Geoff

    P.S. I moved this thread from EDD Ticket to The Events Calendar PRO forum. Same URL, but easier to find. 🙂

    in reply to: Widget Display #946498
    Geoff
    Member

    Hello there, Stefan! Thanks for getting in touch and welcome back to the forums. 🙂

    Good question. You can customize the information that displays in the widget in the Events List widget settings (Appearance > Widgets > Events List). Select the items you would to include (screenshot) then hit the Save button and that will update how your events are displayed in the widget.

    Does this help answer your question? Please let me know.

    Cheers!
    Geoff

    in reply to: Location in calendar view #946494
    Geoff
    Member

    That’s awesome! Nice work and thanks for keeping me posted on your progress. I’m stoked that everything worked out. 🙂

    I’ll go ahead and close this thread, but please feel free to start a new one if any other questions pop up and we’d be happy to help.

    Cheers!
    Geoff

    in reply to: Import events from another calendar #946490
    Geoff
    Member

    Hi there, MK! Thanks for getting in touch.

    Excellent question. We are indeed thinking of new ways to import events, but there is no timeframe yet for when those might be developed and released. For now, the fastest/simplest way to import events is by using our CSV Importer. Here’s a handy tutorial with a video screencast that shows off how that works.

    Sorry I don’t have concrete dates to share, but does this help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Removing the Date & Time #946486
    Geoff
    Member

    Hello there, Afsana–thanks for getting in touch and welcome to the forums.

    I do want to start off by pointing out that we are fairly limited in how much we can support custom development questions like this one. That said, I’m happy to point you in the right direction so you can pick it up and make it happen.

    The date and time of events is displayed in many places throughout the calendar. I think your best bet to remove them is to modify each template where they make an appearance.

    To take a real-life example, let’s remove the date and time from events in List View. To do this, we’re going to override the list/single-event.php template (located in /plugins/the-events-calendar/views/list/single-event.php).

    • Create a folder in your theme directory called tribe-events
    • Create a folder in that one called list
    • Duplicate your list/single-event.php file and drop the copy in the new folder

    Now that the template is in your theme directory, you can modify if to suit your needs. In this case, remove the date and time details, which occur in Lines 57-60.

    The same goes for any other instance where the date and time show up. Create a template override, then modify as needed.

    If you’re looking for more guidance, I would also suggest reading through our Themer’s Guide. This provides a nice step-by-step overview of how they work and which templates are available to customize.

    Cheers!
    Geoff

    in reply to: DTech #946270
    Geoff
    Member

    Hello Jeremy!

    I’m afraid I’m unfamiliar with the shortcode you’re using for the button. You could try using the Excerpt field in the event editor. That would override what is being grabbed from the event description.

    i’m going to go ahead and close this thread since it seems we’re veering from the original topic at hand. Please feel free to start a new thread if you have any other questions and we’d be happy to help there. 🙂

    Cheers!
    Geoff

    in reply to: 404 Errors on Single Day Event Pages #946264
    Geoff
    Member

    Hey Brian–thanks for following up!

    The kicker here is that returning 404s on day views with no events is technically correct and how the plugin was designed to function. If no events are found, then a 404 status is returned.

    One way around this, if you feel inclined to go this route, is to force a 200 status. Here’s a snippet that will do that. I want to caution, however, that it will force a returned 200 OK status for all event pages.

    add_action( 'wp', 'no_event_404s' );
    
    function no_event_404s() {
    if ( ! tribe_is_event_query() ) return;
    status_header( 200 );
    }

    Cheers!
    Geoff

     

    in reply to: Map view does not show all events #946219
    Geoff
    Member

    Hi there, Ali!

    That’s super helpful–thanks for the additional information.

    It looks like this is actually due to the shared hosting plan you have. All sites on the same shared plan also share the same IP address. Between all the domains on the shared plan, all of them are allowed up to the 20K requests limit that Google applies to it’s Maps API. In other words, if a single site on the shared server gets heavy traffic, then all the others are blocked.

    Unfortunately, the only solution here is to upgrade to a better server, preferably one with a dedicated IP address like Virtual Private Server (VPS).

    Sorry I don’t have a concrete solution for you on our end, but I do hope this helps shed some light on what’s happening.

    Cheers!
    Geoff

    in reply to: 404 Errors on Single Day Event Pages #946183
    Geoff
    Member

    Hello there, Brian! Welcome to the forums and sorry for the issue here.

    This is definitely something we’ve worked on in the past and is a continual evolution as far as how to properly resolve 404s from pulling on Day Views where there are no events.

    First off, there is a third-party plugin called Event Rocket that has a method for resolving this. We don’t support the plugin here in the forums, but it does effectively solve the issue you refer to by targeting empty Day Views.

    Another option is to follow the suggestions outlined in this thread.

    I’m hoping that between these two solutions, one will get you what you’re looking for. 🙂

    Cheers!
    Geoff

    in reply to: Related Events Error if different Entries #946174
    Geoff
    Member

    Hi there, Paul! I’m going to go ahead and close this thread since it’s been pretty quiet for a couple of weeks. Please feel free to start a new thread if you run into any other questions and we’d be happy to help. 🙂

    And, of course, we will do our best to update you directly in this thread when we have more to share.

    Cheers!
    Geoff

    Geoff
    Member

    Hi there, Helen! I’m going to go ahead and close this thread since it’s been pretty quiet for a couple of weeks. Please feel free to start a new thread if you run into any other questions and we’d be happy to help. 🙂

    Cheers!
    Geoff

Viewing 15 posts - 8,146 through 8,160 (of 10,150 total)