Geoff

Forum Replies Created

Viewing 15 posts - 9,676 through 9,690 (of 10,150 total)
  • Author
    Posts
  • in reply to: Pricing Levels #841065
    Geoff
    Member

    Hey there, Matt! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new a new thread and we’d be happy to help. πŸ™‚

    Cheers!
    Geoff

    in reply to: Help! I broke it. #841054
    Geoff
    Member

    Hey there, Joseph! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new a new thread and we’d be happy to help. πŸ™‚

    Cheers!
    Geoff

    in reply to: calendar pro + Facebook events plugin not working #841050
    Geoff
    Member

    Hey there, Sam! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new a new thread and we’d be happy to help. πŸ™‚

    Cheers!
    Geoff

    in reply to: Whole Search Bar on another page. #841020
    Geoff
    Member

    Hi there, Calum! Nice to see you again and hope all is well. πŸ™‚

    That’s an interesting question! The search bar is broken into its own module (/the-events-calendar/views/modules/bar.php), so you could grab the code from there, or PHP include it in the theme file(s) where you want it to be used.

    That will pull the code in, but will leave out the other scripts and styles needed for it to display and function properly. You can overcome this by enqueuing those scripts in your functions.php file.

    Here’s what that might look like:
    https://gist.github.com/geoffgraham/510e158ae56a77ed9e76

    Of course, you may need to customize this to suit your specific needs and theme, and also you likely will not need the opening and closing PHP tags. Though this is the sort of customization we’ll leave in your hands, it should point you in the right direction.

    Does that make sense? Will that work for you? Please let me know. πŸ™‚

    Cheers!
    Geoff

    in reply to: Display Categories in List View by Default #840966
    Geoff
    Member

    Hi there, Sally! Thanks for getting in touch and sorry you’re running into an issue. Hopefully we can figure it out here together. πŸ™‚

    I was unable to locate the specific thread you were referring to, but have you seen our tutorial for this? It might give a better overview than the thread did, plus it includes a video walkthrough. I tried this and it worked, though it could have the effect of running too many redirect loops, depending on your setup. In other words, it’s not bulletproof.

    Another way of doing this would be to override the default-template.phpΒ file (located in the wp-content/plugins/the-events-calendar/views directory) and set up a condition that displays the appropriate template based on whether a category is being viewed. That would look something like:

    if (is_tax('tribe_events_cat')) {
    
    // If this is a category, pull template 'list'
    include(tribe_get_current_template('list'));
    
    } else {
    
    // If not a category, pull default set in options
    include(tribe_get_current_template());
    
    }

    Of course, this may need to be modified to suit your specific needs or theme. While that’s the sort of customization we’ll leave in your hands, this should point you in the right direction.

    There’s more information (including step-by-step examples) of how to create template overrides in our Themer’s Guide. I’d suggest heading over there to check that out as well.

    Does that make sense? Will that work for you? Please let me know. πŸ™‚

    Cheers!
    Geoff

    in reply to: Create events list in ASC order AND not show past events #840783
    Geoff
    Member

    Hi there, Joshua! Thanks for getting in touch. πŸ™‚

    Good question. You can create a query for the posts you want to display. Events are set up as a custom post type and can be queried using the default WordPress get_posts() function. You can also use theΒ tribe_get_events() function, which accepts the same parameters, plus allows you to set the “eventDisplay” option to “upcoming”.

    That might look something like this:

    tribe_get_events(
    'eventDisplay' => 'upcoming',
    'posts_per_page' => 4,
    'order' => 'ASC'
    );

    Of course, this will likely need to be modified to suit your specific needs. While this sort of customization is something we’ll have to leave in your hands, this should point you in the right direction. πŸ™‚

    Here is a direct link to our documentation so you can see all the options available to you.

    Does that make sense? Will that work for you? Please let me know.

    Cheers!
    Geoff

    in reply to: Payment method #840724
    Geoff
    Member

    Awesome, thanks for following up! We really hope you enjoy the plugins. πŸ™‚

    I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help.

    Cheers!
    Geoff

    in reply to: Payment method #840692
    Geoff
    Member

    Hi there and thanks for getting in touch!

    I’m sorry you’re running into issues with purchasing the plugin. Will you please email us at pro [at] tri.be? Someone from sales will be able to help you out. πŸ™‚

    Cheers!
    Geoff

    in reply to: tribe_events returned when another post_type is specified #840671
    Geoff
    Member

    Hi there, Oliver! Thanks for following up.

    Events posts are registered as a custom post type, so it would be possible to set your query up to specific exclude them specifically within the get_posts function using the exclude_from_search option. There’s more on this in the WordPress Codex.

    One other thing to watch for is resetting a query before starting a new one. Running multiple loops without resetting them can create a situation where post types are mixed in both queries. There’s more on running multiple loops in the Codex you may want to check out.

    I hope this helps!

    Cheers,
    Geoff

    in reply to: blog is being set to current_page_parent #840644
    Geoff
    Member

    My pleasure! I’m so glad we were able to help. I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. πŸ™‚

    By the way, if you’re enjoying the plugin and have a moment, we’d love it if you shared your thoughts on it on our review page. It would be greatly appreciated!

    Cheers,
    Geoff

    in reply to: Need ical feed info #840632
    Geoff
    Member

    Thanks for confirming the answer, Ross!Β I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. πŸ™‚

    Geoff
    Member

    Hey Thierry, thanks for following up!

    Yeah, it looks like we’re looking at the same URL, but I am getting different results than you. I’ve tested the page (using the link you sent) on the same browsers but am able to navigate between months where both the date in the Search Bar changes and the events for the next month display as well. Check out this screen capture that I took while clicking around. Does this look correct?

    Navigating between months uses Javascript, which is sometimes blocked in browsers. There’s a setting (under Events > Settings > General) to disable this feature (“Use Javascript to control date filtering”). You could try unchecking that box and saving the settings to see if that helps in this case.

    I’m sorry I don’t have a concrete answer for you but, if you can help me see and replicate the issue, I can look at it more closely.

    Cheers!
    Geoff

    in reply to: Month View, Show more #833626
    Geoff
    Member

    Hi there, Robert! Thanks for getting in touch.

    Great question. Yes, there should be a link in the Month on days that have more than days than are set under Events > Settings > Display (screenshot). For example, if you have set 3 as the maximum number of events to show per day, then the link would display on days with 4 or more events.

    Here is a screenshot of what that link looks like, when active.

    Have you made an customizations to the calendar that would prevent that link from displaying? I notice you are running version 3.6.1 of the plugin. Are you able to update to the latest version (3.8.1) to see if that kicks the link in?

    Cheers!
    Geoff

    P.S. You have some great events on your calendar. I would have loved to see the Dave Eggers talk. πŸ™‚

    Geoff
    Member

    Hi there, Thierry! Thanks for getting in touch and we’re stoked to hear the plugin has been working well for you–with exception to this issue, of course. πŸ™‚

    It looks like you have the search bar enabled on your site now. When I head over there, it appears the Next and Previous month links are working. Did the issue happen to get resolved? Perhaps the issue is popping up in a specific browser? Pleae let me know and we’ll see what we can figure out together.

    Cheers!
    Geoff

    in reply to: need ALL events to show "above the fold" in MONTH view #833555
    Geoff
    Member

    Thanks for following up and confirming the answer, Jennifer!Β I’m going to go ahead and close this thread, but please feel free to hit us up with a new thread if any other questions pop up. We’d be happy to help. πŸ™‚

    Cheers!
    Geoff

Viewing 15 posts - 9,676 through 9,690 (of 10,150 total)