Geoff

Forum Replies Created

Viewing 15 posts - 7,741 through 7,755 (of 10,150 total)
  • Author
    Posts
  • in reply to: Hiding past event in list view #955103
    Geoff
    Member

    Hey there Linda!ย This thread’s been quit for a couple of weeks, so I’m going to go ahead and close it. Please feel free to start a new thread if you still have questions here and we’d be happy to help. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: tickets not showing on event page #955102
    Geoff
    Member

    Hey personalwellness!ย This thread’s been quit for a couple of weeks, so I’m going to go ahead and close it. Please feel free to start a new thread if you still have questions here and we’d be happy to help. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: Month and display option not showing in heading #955100
    Geoff
    Member

    Hey Laura! This thread’s been quit for a couple of weeks, so I’m going to go ahead and close it. Please feel free to start a new thread if you still have questions here and we’d be happy to help. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: RTL Support/ Front-end event submission #954803
    Geoff
    Member

    Hi Farhad, thanks for following up!

    Here is one of the sites I remember working with RTL, but I can’t think of any others off hand.

    I do just need Front-end event support, not back-end.

    The PRO version itself does not provide front-end submissions, but the Community Events add-on I mentioned does. At the same time, someย of the features you’re looking for (e.g. member lists) aren’t supported at the moment.

    I need different background skin and template for events, which each one can be choose to looks different.

    Both The Events Calendar and The Events Calendar PRO have the same included styles. It’s very possible to created themes for specific events based on things like category, but it would certainly take some custom development to get that going. I’d suggest checking out our Themer’s Guide for more details on what is possible with customizations in the plugin.

    Please let me know if you still have questions here and I’d be happy to help. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: Import by event ID not working #954707
    Geoff
    Member

    Hi there, Neil! Thanks for getting in touch and welcome to the forums. ๐Ÿ™‚

    Sorry for the trouble here with importing events. That’s certainly odd.

    Do you happen to know if the event is set to public or private in Eventbrite? A private event would have issues being imported.

    I’ve also seen instances where there were issues importing from eventbrite.ca instead of .com. Is the event listed on the .com site?

    If you have a link to the event, I’d be happy to try importing it myself on my setup to see if I hit the same issue.

    Cheers!
    Geoff

    in reply to: RTL Support/ Front-end event submission #954704
    Geoff
    Member

    Hi there, Farhad! Thanks for getting in touch and checking out the plugins. ๐Ÿ™‚

    I have seen a few successful implementations of RTL, but I honestly haven’t played with it much myself to know if it’s 100% compatible. I think the best way to find out if it will work for your specific setup is to download the free version of The Events Calendar and give it a drive there.

    Yes, we do indeed have an add-on called Community Events that allows visitors to submit events to the calendar from the front end. Definitely worth checking out.

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

    Cheers!
    Geoff

    in reply to: Search mostly working, but we're missing a few #954701
    Geoff
    Member

    Hey there, Stephanie!

    Ah, that makes a lot more sense now. It does appear that switching from the plugin’s pagination to the default WordPress pagination is at play here.

    I know it’s a pain, but would it possible for you to roll back that customization? It would likely be an easier lift to resolve the theme conflict than it would be to build an alternative form of pagination.

    Cheers!
    Geoff

    in reply to: Mobile calendar breakpoint #954697
    Geoff
    Member

    Hi Daniel, thanks for following up!

    The Week View is actually responsive as well. On large screens, the full week grid is displayed. On smaller screens, the grid disappears and is replaced with a list of upcoming events for the week.

    I see the the event export button is falling outside the site’s container in small screens, but everything else seems in tact. You can resolve the button issue by adding something like this to your site’sย style.css file:

    #tribe-events-content {
    margin: 0;
    }

    I hope this helps!

    Geoff

    in reply to: Formatting new Organizer List plugin #954592
    Geoff
    Member

    Hi Andrea, nice to see you again!

    Good question, and an interesting one.

    I do think that ordering the list would by Region would be quite a customization. We’d be happy to share a list of freelancers who might be able to help you out–if you’re interested, hit us up with an email to support [at] theeventscalendar.com and we’d be happy to send that along.

    I was able to get the list to order alphabetically using this as the plugin. Give it a shot and let me know if this will work for you as well. ๐Ÿ™‚

    Cheers!
    Geoff

    class TEC_VenueOrganizer_List {
    protected $atts = array();
    protected $query;
    protected $output = '';
    public function __construct( $atts ) {
    $this->atts = shortcode_atts( array(
    'post_type' => self::get_type( 'VENUE_POST_TYPE' ),
    'limit' => -1,
    'ordered' => 'title',
    'ascending' => 'ASC'
    ), $atts );
    }
    
    public function __toString() {
    $this->query();
    $this->format();
    return $this->output;
    }
    
    protected function query() {
    $args = array(
    'post_type' => $this->atts['post_type'],
    'posts_per_page' => $this->atts['limit'],
    'orderby' => $this->atts['ordered'],
    'order' => $this->atts['ascending']
    );
    
    $this->query = new WP_Query( apply_filters( __CLASS__ . '.args', $args, $this->atts ) );
    }
    
    protected function format() {
    $opening_tag = '<ul class="tec list ' . $this->atts['post_type'] . '">';
    $this->output = apply_filters( __CLASS__ . '.list.open', $opening_tag, $this->atts );
    
    while ( $this->query->have_posts() ) {
    $this->query->the_post();
    $link = '<a href="' . get_the_permalink() . '">' . get_the_title() . '</a>';
    $item = '<li class="tec list ' . $this->atts['post_type'] . '">' . $link . '</li>';
    $this->output .= apply_filters( __CLASS__ . '.list.item', $item, $this->atts );
    }
    
    $this->output .= apply_filters( __CLASS__ . '.list.close', '</ul>', $this->atts );
    wp_reset_postdata();
    }
    
    public static function get_type( $type_const ) {
    if ( class_exists( 'Tribe__Events__Events' ) ) $class = 'Tribe__Events__Events';
    elseif ( class_exists( 'TribeEvents' ) ) $class = 'TribeEvents';
    else return false;
    
    $class = new ReflectionClass( $class );
    return $class->getConstant( $type_const );
    }
    }
    function tec_do_venue_shortcode( $atts ) {
    $type = TEC_VenueOrganizer_List::get_type( 'VENUE_POST_TYPE' );
    if ( ! $type ) return '';
    
    $atts['post_type'] = $type;
    return new TEC_VenueOrganizer_List( $atts );
    }
    
    function tec_do_organizer_shortcode( $atts ) {
    $type = TEC_VenueOrganizer_List::get_type( 'ORGANIZER_POST_TYPE' );
    if ( ! $type ) return '';
    
    $atts['post_type'] = $type;
    return new TEC_VenueOrganizer_List( $atts );
    }
    add_shortcode( 'list_venues', 'tec_do_venue_shortcode' );
    add_shortcode( 'list_organizers', 'tec_do_organizer_shortcode' );
    in reply to: WPML problem with Community Events #954584
    Geoff
    Member

    Hi there,ย Padrao! Thanks for getting in touch and welcome to the forums. ๐Ÿ™‚

    Sorry for the trouble here. There are indeed conflicts that exist between The Events Calendar and WPML. We’re definitely interested in making the plugins more compatible–there are things we can do on our end but things that also must be done on the other end as well–but unfortunately the two are incompatible for the time being.

    We do have a feature request to improve compatibility on our UserVoice forum. It wold be great to have you add your vote there, and subscribe to get updates on the progress of that development.

    Sorry I don’t have a concrete solution for you here, but I do hope this helps clarify things a bit.

    Cheers!
    Geoff

    in reply to: Searchform not passing right Locationvalues #954582
    Geoff
    Member

    Hi Benjamin and welcome to the forums! I hope you’ve been enjoying the PRO plugin so far. ๐Ÿ™‚

    Interesting question! Byย not passing do you mean that the something the form submits, but never loads? Or do you mean that the form cannot be submitted at all when something is typed into the location field?

    I tried overriding the search bar with your code and it seemed to work correctly. By chance, I wonder if there is a theme conflict at play. Are you able to activate a default WordPress theme (like Twenty Fifteen) and see if the issue still comes up? How about when you deactivate all other plugins while using a default WordPress theme? Here’s a guide to help test those conditions.

    Please give that a shot and let me know what you find. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: Mobile calendar breakpoint #954579
    Geoff
    Member

    Hi there, Daniel! Thanks for getting in touch and welcome to the forums. I hope you’ve been enjoying the PRO plugin so far. ๐Ÿ™‚

    Good question. Can you tell me a little more about what’s not working? Do you get an error when trying to add the snippet to yourย functions.php file? Do you simply see no change at all when adding the snippet? Or do you see a change, but it’s not the change you were expecting?

    I do see that Week View is the default view on your site and want to note that the responsiveness is only applied to Month View. That could certainly explain why you wouldn’t see any changes when using those recommended solutions. There are no breakpoints for Week View, so those would need to come from your theme styles.

    Cheers!
    Geoff

    in reply to: Theme conflict for not logged in users #954466
    Geoff
    Member

    Hi David! Thanks for getting in touch and welcome to the forums. ๐Ÿ™‚

    Sorry for the issue here–that certainly sounds odd!

    Are you finding that the issue affects all events, or just a few isolated instances of events? If it’s just a few, would it be possible to send a link to one of them?

    Let’s start there before we dig much deeper. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: Several Pre Sales Questions #954412
    Geoff
    Member

    Hi there, Suzi! Thanks for marking the answer here–I appreciate it.

    I’ll go ahead and close this thread but do please feel free to open a new one if any other questions pop up and we would be happy to help. ๐Ÿ™‚

    Cheers!
    Geoff

    in reply to: direct url from month view #954411
    Geoff
    Member

    Ah, I think I got you now–thanks for the clarification!

    Perhaps the Redirection plugin would be a good fit here. Have you tried something like that to manage a redirect?

    Cheers!
    Geoff

Viewing 15 posts - 7,741 through 7,755 (of 10,150 total)