Geoff

Forum Replies Created

Viewing 15 posts - 9,886 through 9,900 (of 10,150 total)
  • Author
    Posts
  • in reply to: Repeating Display of Events in Month View #796482
    Geoff
    Member

    Hi there Staeven, thanks for getting in touch! Sorry you’re hitting some trouble here but hopefully we can figure it out together.

    YES, I’ve deactivated all other plugins to check for a plugin conflict.
    YES, I’ve reverted to the 2011 default WordPress theme (with other plugins still deactivated) to check for a theme conflict.

    Just to confirm, did you still experience the same issue when you deactivated all other plugins and reverted to the 2011 WordPress theme? Or were you able to identify a conflict with the theme or one of the other plugins?

    Also, if you haven’t already, please check out our guide to Testing for Conflicts. It’s short, but really helpful when trying to pinpoint an issue.

    Let me know what you found out and it will help us figure out what’s going on. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hey Jennifer, thanks for following up! I’m so switching templates helped solve the issue.

    Getting the sidebar in there will require customizing the calendar layout a bit. It takes a few steps but is certainly doable:

    1. Create a copy of the list.php file from the plugin folder
    2. Create a new tribe-events folder in your theme directory and drop the list.php copy in there
    3. Edit the file and and include the sidebar where it’s needed

    These steps are outlined in greater detail in our Themer’s Guide, which I highly recommend checking out because it provides some nice examples. The line you’ll need to include the sidebar may vary for your theme, but here are the WordPress Codex instructions for doing it.

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

    Cheers!
    Geoff

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

    Hi there, Sam! thanks for getting in touch and sorry you’re running into some issues here.

    Yes, you are correct that the issue is with incompatible versions. We recommend running the same versions in order to ensure that the codebases are compatible, so you will want to update to the same version across the board to resolve the issue.

    If you prefer not to renew your license just yet, you might be able to log into your account and access older versions of each plugin and sync downward instead. Then again, you may be relying on newer functionality that will get lost from 3.7 down to 3.4, so tread cautiously there as well.

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

    Cheers!
    Geoff

    in reply to: tribe_get_events returning old events #794988
    Geoff
    Member

    Hi there, Charles! Thanks for getting in touch and sorry you’re running into some trouble here. Hopefully we can figure it out together. 🙂

    The tribe_get_events() function works a lot like the WordPress get_posts() function. To get the next three upcoming events, you could try something like:

    <?php global $post;
    $events = tribe_get_events(array(
    'eventDisplay'=>'upcoming',
    'posts_per_page'=>3
    ));

    That will fetch the next three events that scheduled on the calendar relative to the current day.

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

    Cheers!
    Geoff

    in reply to: Search in Monthly Calendar View #794961
    Geoff
    Member

    Hey there Brian! Welcome back to the forums. 🙂

    The search will return results for the current month as long as Month View is the current view.

    I would imagine you could use some Javascript to return results using the List View template instead. It would take some rather crafty customization that’s unfortunately beyond the scope of support we can provide here, but I think it would be possible to accomplish.

    Here’s a direct link to our documentation, which will give you some direction as far what is available to you. Also, you may be interested in checking out our Themer’s Guide for more information on creating customized event templates.

    Sorry I don’t have a more specific solution to offer, but does this help answer your question? Please let me know.

    Cheers!
    Geoff

    in reply to: RSVP – Signups?? #794935
    Geoff
    Member

    Thanks for following up, Martin! Please let us know if any other questions pop up and we’d be happy to help. 🙂

    Geoff

    in reply to: Can users add other users as attendees #794933
    Geoff
    Member

    Thanks for confirming the answer, Doug! Please feel free to start a new thread if any other questions pop up and we’d be happy to help. 🙂

    Geoff

    in reply to: Can't find source text for date string in "week" view #794216
    Geoff
    Member

    Hi there Boaz, welcome to the forums and thanks for getting in touch!

    Good question. The string is actually pulled from the date settings in Events > Settings > Display under “Date Format Settings.” It sounds like you are looking for the “Week Day Format” which accepts the same formatting options as default WordPress.

    You can further customize the view using the tribe_events_week_get_the_day_display() function, which is what displays the formatted date for the column headers.

    Will that work for you? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: Get additional field value #794178
    Geoff
    Member

    Hi there Ricardo, thanks for getting in touch!

    Great question. You should be able to get the value of a field using the tribe_get_custom_field() function. For example:

    echo tribe_get_custom_field('FieldName');

    Does that help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

    Geoff
    Member

    Hi there, Cintia! Thanks for the follow-up and additional information–it’s greatly appreciated.

    I’m having a tough time pinning down where the issue is since it seems to be specific to the theme.

    The best solution would be to solve it at the theme level. If that isn’t an option, you may be able to tackle it with some PHP/jQuery. Something like:

    if ( is_page( 'courses' ) ) {
    echo '<script>';
    echo '$("#menu-item-158").removeClass("current_page_parent");
    echo '$("#menu-item-261").addClass("current_page_parent");
    echo '</script>'
    }

    Again, that might not be the most elegant solution and you would need to tailor it to fit your needs, but that might get you closer to where you need to be.

    Sorry I’m unable to offer more with a theme conflict like this, but does that help you? Please let me know.

    Cheers!
    Geoff

    in reply to: Can users add other users as attendees #794112
    Geoff
    Member

    Hi there, Doug and thanks for getting in touch!

    Great question. The PRO plugin does a lot of things, but booking appointments is not one of them at this time. We can create a calendar that allows registered users to create events (using our Community Events add on), but unfortunately those same members are unable to register attendees. That’s a great idea though!

    I don’t have a specific recommendation in mind, but here is a search of plugins that might get you what you’re looking for: https://wordpress.org/plugins/search.php?q=appointment+calendar

    Sorry I don’t have more to offer at the moment, but does this help answer your question? Please let me know.

    Cheers!
    Geoff

    in reply to: RSVP – Signups?? #794084
    Geoff
    Member

    Hi there, Martin! Thanks for getting in touch. 🙂

    Great question. At the moment, none of our plugins support RSVP functionality, though it is something we have on our radar and planned for a later release. In the meantime, however, it might be possible to add it with a third-party plugin or even with some customization.

    Does this help answer your question? Please let me know and thanks for your interest in our plugins!

    Cheers,
    Geoff

    Geoff
    Member

    Hi there Jennifer,

    Thanks for taking the step to activate the default Twenty Ten theme and confirm the issue a theme conflict–that really helps and is greatly appreciated! 🙂

    Are you using the default event template? You can check this in Events > Settings > Display, and select “Default Events Template” from the “Events Template” dropdown (remember to hit “Save Changes” at the bottom of the screen). I have a hunch that you might be using a theme template and that it is conflicting with the event posts.

    Does that work for you? Please let me know. 🙂

    Cheers!
    Geoff

    in reply to: How to remove "state or province" and dropdown #792527
    Geoff
    Member

    Awesome! Thanks for following up and confirming that it worked. 🙂

    Since it sounds like we’ve covered the answers to your questions, 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: How to remove "state or province" and dropdown #791718
    Geoff
    Member

    Give this a try in your functions.php file:

    add_filter( 'gettext', 'my_event_change_venue_label', 20, 3 );
    
      function my_event_change_venue_label( $translated_text, $text, $domain ) {
        if ( $translated_text == 'Use Saved Venue:' && $domain == 'tribe-events-calendar' ) {
          $translated_text = __( 'Your Translated Text Goes Here!', 'tribe-events-calendar' );
      }
      return $translated_text;
    }

    Let me know if that helps. 🙂

    Geoff

Viewing 15 posts - 9,886 through 9,900 (of 10,150 total)