Geoff

Forum Replies Created

Viewing 15 posts - 8,611 through 8,625 (of 10,150 total)
  • Author
    Posts
  • in reply to: Year view via the Agenda View mini plugin or other resource #936281
    Geoff
    Member

    Hey there, TRC! Just checking in to see if you had any follow-up questions or if everything is good here–please let me know. 🙂

    Cheers!
    Geoff

    in reply to: single event on separate page in photo format #936278
    Geoff
    Member

    Hey there, Adrian Just checking in to see if you have any follow-up questions on this one–please let me know. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hey there, Kayhan! Just checking in to see if you had any follow-up questions or if everything is good here–please let me know. 🙂

    Cheers!
    Geoff

    in reply to: How to keep events always shown at list page? #936274
    Geoff
    Member

    Hey there, remix1998!! This thread’s been quiet for a couple of weeks, so I’m going to go ahead and close it. Please feel free to start a new one if anything else pops up–we’d be happy to help. 🙂

    Cheers!
    Geoff

    in reply to: Add tickets to event after adding to wucommerce? #936272
    Geoff
    Member

    Hey there, Trevor! This thread’s been quiet for a couple of weeks, so I’m going to go ahead and close it. Please feel free to start a new one if anything else pops up–we’d be happy to help. 🙂

    Cheers!
    Geoff

    in reply to: Event saved like article #936271
    Geoff
    Member

    Hi Sabrina and thanks for following up and helping clarify what you’re looking for. There’s a bit of a language barrier here, but hopefully we can figure this thing out together. 🙂

    If I’m understanding correctly (and I hope I am!), you have two post types (Posts and Events) and would like to display them together on the homepage. Is that correct?

    If so, there is an option under Events > Settings that will make this happen. It will likely be different in your language, but the option is “Include events in main blog loop” (screenshot). If you select that and save your settings, then Posts and Events will both display together on your homepage as long as it is using the main blog loop.

    The second thing I hear you mentioning is preventing recurring events from displaying multiple times. There is another option for that in Events > Settings called “Recurring event instances” (screenshot). Select that option and save your settings and then only the first instance of a recurring event will display in your feed.

    I hope this helps and does a better job of answering your question! Please let know if this is closer to what you’re looking for or if I’m still missing the mark.

    Cheers!
    Geoff

    in reply to: Search by Date Range #936261
    Geoff
    Member

    Thanks for marking the answer, Nadine! I’m glad this helped and will go ahead and close this thread. Feel free to let us know if any other questions pop up and we’d be happy to help. 🙂

    Cheers!
    Geoff

    in reply to: Calendar Pro Iphone bug #936259
    Geoff
    Member

    Hmm, this is really strange. I have tried testing the mock domain on the following:

    • iPhone 6 (iOS8)
    • iPhone 5S (iOS 7 and iOS8.1)
    • iPhone 4S (iOS 5.1)
    • iPad Mini (iOS 8.1)

    All are using Safari and all seem to be working. I’m not saying the issue isn’t there–it’s just hard to troubleshoot if I’m unable to see it.

    I know it sounds trivial, but does clearing cache make any difference? How about if you switch to a default WordPress theme? Just to erase any doubt, will you please try the steps outlined in our Testing for Conflicts Guide and let me know if you see any difference under those conditions?

    Cheers!
    Geoff

    in reply to: Google Maps UI #936253
    Geoff
    Member

    Hey there, Nick! Welcome back to the forums and sorry you’re hitting some trouble with the Google Maps embed.

    First off, nice site! I love what you’re doing to customize the calendar so far and am stoked to see how it all shapes out. Great work. 🙂

    It appears these customizations are also leading to the conflicts as well. I see several errors in the console when I inspect element and many of them are JS/CSS errors, including ones that would have an impact on the map.

    We’re fairly limited in helping with issues that pop up with custom development, but right off the bat, I see that there are rules inside the following file that are causing some of the layout issues you’re describing:

    themes/gamers/css/webflow.css

    Overriding those would be a good place to start, though I imagine there are other spots as well.

    Cheers!
    Geoff

    in reply to: Event saved like article #936232
    Geoff
    Member

    Hi there, Sabrina! Welcome to the forum and thanks for telling us the plugin is beautiful–we’re super stoked you like it so far. 🙂

    The good news is that events are saved just like posts. In fact, they are registered as a custom post type and function much the same way as default WordPress posts.

    That means you can query Events just like Posts using the <i>get_posts()</i>. That might looks something like this:

    <?php
    $args = array(
    'post_type' => 'tribe-events',
    'posts_per_page' => '5',
    'exclude' => array( $post->ID )
    );
    
    // get posts
    $posts = get_posts( $args );
    
    // check if any posts are returned
    if ( $posts ) { ?>

    Then, you can run your loop to get the data you want, such as the title, start date, end date, description, thumbnail or anything else you need in there. Here’s our entire list of functions to help you find the variables you’re looking for.

    Please let me know if this helps answer your question. 🙂

    Cheers!
    Geoff

    in reply to: RSS Feed Wrong Time #936221
    Geoff
    Member

    Hi there, Dan!

    Just writing to let you know that one of my colleagues here on the team wrote a snippet that might help address the RSS time issue you reported. Try pasting this into your theme’s functions.php file and see if it makes a difference:

    https://gist.github.com/geoffgraham/97066b8915f588aa0fad

    Cheers!
    Geoff

    in reply to: RSS feed wrong time #936220
    Geoff
    Member

    By the way, one of my colleagues here on the team came up with a snippet that might help address the RSS feed time issue you’ve been having. Give this a shot and let us know if it helps make a difference.

    https://gist.github.com/geoffgraham/97066b8915f588aa0fad

    Cheers!
    Geoff

    Geoff
    Member

    Hi there, Julio! Welcome to the forums and sorry to hear you’re hitting some trouble here with the quantity boxes displaying on non-events.

    You should be able to hide that quantity with some CSS. Try adding this to your site’s style.css file:

    .edd_download_purchase_form .edd_download_quantity_wrapper .edd-item-quantity {
    display: none;
    }

    Let me know if that does the trick. 🙂

    Cheers,
    Geoff

    in reply to: Calendar Pro Iphone bug #936211
    Geoff
    Member

    Hi Jamie! Thanks for following up and sharing more information–that really helps. 🙂

    I see you’re running a pretty late version of the plugins (3.6.1). Does the issue still crop up when updating to the latest versions of each plugin? We’re currently on 3.9.1 for The Events Calendar and The Events Calendar PRO.

    My hunch is that the older version of the plugin isn’t holding up with newer browser versions and that an update will help remedy this.

    Cheers!
    Geoff

    in reply to: Search by Date Range #936209
    Geoff
    Member

    Hi there, Nadine! Thanks for getting in touch and for using the plugins–we’re stoked you’re loving them so far. 🙂

    Good question. We do have a suggestion on our UserVoice page to add a feature that would allow filtering events by a specific date range, but there isn’t anything like that currently available right out of the box.

    One way to get something close to that is to select the view that most reflect the date range (i.e. Month, Week, Day), select a date in the search bar, then use the URL from those results. For example, a link that shares all the events from the week of January 25 would by something link: [your-site]/events/week/2015-01-25.

    I know that’s not exactly what you’re looking for, but does it help answer your question and give you an idea of what currently available? Please let me know. 🙂

    Cheers!
    Geoff

Viewing 15 posts - 8,611 through 8,625 (of 10,150 total)