Barry

Forum Replies Created

Viewing 15 posts - 8,986 through 9,000 (of 17,936 total)
  • Author
    Posts
  • in reply to: Filter by category #132393
    Barry
    Member

    Hi!

    Sorry for the late reply – unfortunately this may have been marked as spam and we only just uncovered it.

    Looking at your code, I can see you are setting the post type to announcements – remember that events have their own unique post type, so this will not actually result in any events being retrieved. I’d definitely encourage you to read over some of our learning resources and also some great entries from the WordPress Codex:

    However, as this is basically a custom development issue I’m afraid we’ll have to leave it to you to figure out the remaining details.

    Good luck πŸ™‚

    in reply to: Advances selling schedules #132387
    Barry
    Member

    This thread’s not seen much activity for the last couple of weeks so I’ll go ahead and close it. Of course if you still need help with this or any other issue please don’t hesitate to create a new thread (or threads) and one of the team will be only too happy to help. Thanks!

    in reply to: Date doesn't show up on event page #131499
    Barry
    Member

    How odd – are those all day events – and if so does editing them (change something minor, save, and change it back) resolve the issue?

    Above and beyond that, if you revert to a default, unmodified theme (like Twenty Thirteen) and deactivate all other plugins is this still an issue? If you find that solves this, try reactivating everything one item at a time until you (hopefully) discover the seat of the conflict.

    Let me know how you get on!

    in reply to: Venue name in Photo view? #131488
    Barry
    Member

    Hi Alicia – that’s very close! Try tribe_get_venue() instead πŸ™‚

    Does that help?

    in reply to: How to remove page heading thingy. #131481
    Barry
    Member

    Ah, ok.

    So there are a couple of options to explore here.

    The first is to visit the Events > Settings > Display admin screen and adjust the template setting (if you are currently using ther Default Page Template, try switching to the Default Events Template, for example).

    The second is to edit your site’s wp-config.php file and add:

    define( 'TRIBE_MODIFY_GLOBAL_TITLE', true );

    Which might also resolve this for you, however do bear in mind that – depending on your template setting as above – it may also impact on the actual page title (in the sense of the title commonly displayed in your browser tab).

    Let me know if either of those help!

    in reply to: Venue Featured Image #131472
    Barry
    Member

    Hi!

    Would something like this do the trick?

    .tribe-events-event-image { text-align: center }

    You could add such a rule to a custom tribe-events.css stylesheet, for instance (see our Themer’s Guide for details of this!) … does that help at all?

    in reply to: Multiple Calendars #131443
    Barry
    Member

    Hi!

    Something very close to this is indeed possible – you can simply put events in different categories and then link to the events page (with a category parameter), achieving the effect of having two different categories with different content.

    I hope that helps – but let me know if we can assist with anything else πŸ™‚

    in reply to: Recurring Events won't move to published state #131439
    Barry
    Member

    Very strange.

    Can you confirm this happens even with no other plugins but ours (which should be our most up-to-date releases) and with only a default, unmodified theme active?

    Also… is there anyway of listing events in the EVENT ADMIN backroom with the most current dated event at the top of the list rather than the farthest out by default?

    Does clicking on the start date header in the table header help here? A number of the columns are sortable.

    in reply to: Time zone support? #131431
    Barry
    Member

    Hi!

    Yes it’s possible to change the time format to include the timezone – this adjustment can be made via the WordPress settings screens (and isn’t unique to the PRO plugin).

    If you need any further help with this specific issue though please do post on the appropriate forum.

    Thanks for getting in touch!

    Barry
    Member

    I’m sorry you’re hitting so many obstacles – but let’s stick with the first site in this thread and I’d ask that you create fresh threads for any separate problems/sites (of course if the problem is very similar and we hit upon a fix in this one you could just reapply it).

    There are two things I notice immediately:

    • You are using the Default Events Template – that may not be relevant but it’s worth trying out the Default Page Template (you can adjust this via the Events > Settings > Display admin screen) in case that helps with this
    • There is a Javascript issue relating to the fact that the Google Maps API has been included twice – it may be worth approaching the theme author and asking if their theme enqueues Google Maps and, if so, how it can be “turned off”

    Do either of those help here?

    in reply to: Need to strip "events/category/" from all category pages #131408
    Barry
    Member

    That’s going to be quite tricky and is really beyond what we can assist you with here – I’d suggest that if there isn’t already a suitable plugin out there that can accomplish this then you’re going to need solid WP development skills to implement this.

    Can I ask why this is important? We’d love to know more about why you want this πŸ™‚

    in reply to: Venue Approval #131401
    Barry
    Member

    I’m guessing this is being done with something other than our Community Events plugin?

    If so it’s hard to suggest really concrete measures as I don’t how your solution works – but would encouraging the user to search for pre-existing venues in the first instance (or only exposing pre-existing venues) be an option?

    Perhaps you could create events and venues separately, but use post meta data to establish a bond between them such than on approval or publication of the venue it is instantly linked to the relevant event?

    Barry
    Member

    Apologies for the inconvenience.

    We’re looking into some changes here, but in the interim could you try adding something like this to your theme’s functions.php file and see if that provides a measure of temporary relief?

    /**
     * Crude means of removing events-admin.css from all screens that are
     * not "owned" by The Events Calendar.
     */
    function limit_range_of_tribe_admin_styles() {
    	if ( ! class_exists( 'TribeEvents' ) ) return;
    	if ( false === strpos( $_SERVER['QUERY_STRING'], 'tribe' ) )
    		wp_dequeue_style( TribeEvents::POSTTYPE . '-admin' );
    }
    
    add_action( 'admin_enqueue_scripts', 'limit_range_of_tribe_admin_styles', 20 );
    Barry
    Member

    Hi!

    Embedding views in other pages/posts is possible but not natively supported at this time, so you’d really need to figure out the fine detail of this one by yourself, I’m afraid – but in essence I’d recommend using tribe_get_view() to pull in week view and setting up the same scripts and styles as regular week view depends on.

    Does that help at all?

    in reply to: Breaks Themes Pagination #131379
    Barry
    Member

    Hi Jordan,

    Sorry you are experiencing problems.

    I appreciate you seem to have zeroed in on Events Calendar PRO as the culprit here yet I can’t replicate the same thing when using a default theme and no other plugins (except for PRO and The Events Calendar itself).

    Can you clarify if you find the same thing, or does some other condition have to be satisfied here like having your particular theme or another plugin in place?

    Let me know!

Viewing 15 posts - 8,986 through 9,000 (of 17,936 total)