Barry

Forum Replies Created

Viewing 15 posts - 6,811 through 6,825 (of 17,936 total)
  • Author
    Posts
  • Barry
    Member

    I’m sorry to hear that.

    It’s possible there is a file permissions issue or – in some cases – the hosting environment impedes communication with our own server and that could be behind this, too.

    Would updating manually work for you? You can grab .zips of any plugins you have a license for over here:

    tri.be/my-account/downloads

    Let me know if that helps!

    in reply to: Problem with start time in week view 3.7 update #534408
    Barry
    Member

    Hi!

    Week view has been changed to start at whatever the earliest start time is in a given week.

    When I look at the URL you shared it seems you have an event that starts at five minutes passed midnight, which would explain this.

    Does that clarify things at all?

    Barry
    Member

    Hi – great question!

    You could listen out for the creation of events (or even for them being updated) by using WordPress’s save_post_{post_type} hook, in this case that would look like:

    save_post_tribe_events

    From there you would need some logic to test and see if the user’s intent was to make it private or not – possibly by inspecting the $_POST superglobal (you may also want to add some other safety checks into the mix) and then update the post status accordingly.

    It’s a bit beyond the scope of support here on the forum to go much further with a customization like this one but hopefully that outlines the basic mechanics – from here we’ll need to leave the rest to you πŸ™‚

    in reply to: List View Displaying Address Incorrectly #534371
    Barry
    Member

    Hi!

    Looks like you’ve already got a few custom CSS rules in place relating to your event templates and you could probably add this one into the mix, too:

    #tribe-events .tribe-events-event-meta.vcard span { display: inline }

    Alternatively you could create a custom tribe-events.css stylesheet (details here) and add the rule there, instead.

    Does that help?

    in reply to: "untitled" event pages #534363
    Barry
    Member

    Hi – sorry you’re experiencing difficulties.

    The logic in Jonah’s snippet for detecting the three single post views you detailed ought to do the trick, ie:

    	if ( tribe_is_event() && is_single() ) { // Single Events
    		echo 'were on a single event page';
    	} elseif ( tribe_is_venue() ) { // Single Venues
    		echo 'were on a single venue page';
    	} elseif ( get_post_type() == 'tribe_organizer' && is_single() ) { // Single Organizers
    		echo 'were on a single organizer page';
    	}

    Possibly though something else is getting in the way. Can you share – via Pastebin, Gist or some similar service – the actual code you have in place, within the context of the relevant template?

    in reply to: Feature Request: Event Cost Button #534354
    Barry
    Member

    Hi!

    You could definitely override one of our templates – depending on where you want to implement this – and make use of some of our template tag functions such as:

    Which button exactly are you thinking of changing? Is it the one that appears in list view?

    in reply to: Events in List view presentation on iPad #534330
    Barry
    Member

    Hi: I’ll log that for further review, I can see how it may not be the very best screen size for that behaviour πŸ™‚

    In the meantime, you could drop the screen size at which this kicks in by following these steps:

    https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/#responsivetemplates

    Would that help, at least as a temporary workaround?

    in reply to: Day Filter results off by one day #534314
    Barry
    Member

    That is odd.

    The first thing I’d like to check on is if another plugin – or your theme – might be conflicting. Can you try deactivating everything except for:

    • The Events Calendar
    • Events Calendar PRO
    • Filter Bar

    And additionally switch to a default, unmodified theme such as Twenty Thirteen and let me know if this persists?

    Assuming it does not continue at that point, can you start reactivating everything and test at each stage to see if the problem has returned (this might help to figure out what exactly is conflicting, if indeed there is a conflict).

    Thanks!

    in reply to: Recurrent event details missing #534306
    Barry
    Member

    Hi – I’m sorry you’re hitting difficulties here.

    Are you positive that event is recurring? Normally I would expect to see a link reading Recurring Event (See all) – translated of course – but that doesn’t seem to be present.

    Iv’e try with Twenty Twelve theme and it’s still the same.

    Thanks for giving that a try πŸ™‚

    Can you confirm if, at the same time, you also disabled all other plugins except for The Events Calendar and Events Calendar PRO – and did that make any difference?

    Thanks!

    in reply to: Overriding CSS #534293
    Barry
    Member

    Please do feel free to make a feature request – we’d love to hear from you πŸ™‚

    An alternative approach though could be to add a stylesheet to your theme (tribe-events/filter-bar.css perhaps) and set it up with the following snippet – which you might add to your theme’s functions.php file:

    add_action( 'wp_enqueue_scripts', 'add_filter_bar_stylesheet', 100 );
    
    function add_filter_bar_stylesheet() {
        $custom_stylesheet_path = get_stylesheet_directory_uri() . '/tribe-events/filter-bar.css';
        wp_enqueue_style( 'custom_filter_bar_stylesheet', $custom_stylesheet_path );
    }

    The slight advantage this would give you is that you would not need to dequeue the existing Filter Bar stylesheet or copy its rules across to your custom version (which would arguably be a more future-proof way of handling this).

    I hope that helps and please do post a feature request πŸ™‚

    in reply to: Cannot register existing event to eventbrite.com #533184
    Barry
    Member

    OK. I wonder if something else might be impacting.

    What if you deactivate all other plugins (except for The Events Calendar and Eventbrite Tickets) and additionally switch to a default, unmodified theme such as Twenty Thirteen.

    Does it work as expected under those conditions?

    Barry
    Member

    Hi!

    Unless you’re sharing something confidential like user logins it is generally best to avoid using private replies – it means others with similar questions in the future won’t be able to see the discussion in its entirety. Also, the forum is – as you can probably tell – not the very best place to share code so, particularly for longer snippets, sharing them via Pastebin, Gist or some similar service is often better πŸ™‚

    Almost. So the additional fields show up in the single event view, but not in the full event list.

    Right – by default they don’t show up there – but you could try adding that same line of code before into your custom list/single-event.php template:

    TribeEventsPro::instance()->single_event_meta->additional_fields();

    Does that help?

    Barry
    Member

    Awesome, glad we got there!

    I’ll go ahead and close this topic since it sounds like everything is now sorted – but if anything else crops up that we might be able to help with please do go ahead and create a new topic and one of the team will be happy to help πŸ™‚

    Also, if you have a moment, we’d love to hear your thoughts on The Events Calendar over on our review page. Thanks again!

    in reply to: Simple way of changing color of all links? #533146
    Barry
    Member

    Pleasure!

    I’ll go ahead and close this topic – but if any other questions crop up that we might be able to assist with definitely do feel free to create new topics as needed and one of the team will be only too happy to help πŸ™‚

    Also, if you have a moment, we’d love to hear your thoughts on The Events Calendar over on our review page. Thanks again!

    in reply to: Plugins will not update #533138
    Barry
    Member

    Excellent, glad that helped!

    I’ll go ahead and close the topic at this point but if this crops up again please don’t hesitate to let us know (and reference this thread) and we’ll see if there is anything we can investigate to help make automated updates function as expected … sometimes that isn’t possible due to various hosting constraints, but we could definitely explore a few ideas.

    Any way, thanks for checking in and good luck with everything else πŸ™‚

Viewing 15 posts - 6,811 through 6,825 (of 17,936 total)