Geoff

Forum Replies Created

Viewing 15 posts - 9,961 through 9,975 (of 10,150 total)
  • Author
    Posts
  • in reply to: How to combine CSS files #778419
    Geoff
    Member

     

    Hey there! 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’ll help you out. Thanks!

    Geoff
    Member

    Hey there! 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’ll help you out. Thanks!

    Cheers!
    Geoff

    in reply to: Exclude Specific CATEGORY #778404
    Geoff
    Member

    Hey there! 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’ll help you out. Thanks!

    in reply to: Spanish translations #778399
    Geoff
    Member

    Hi there, Marta! Thanks for the offer. That’s really awesome of you and we appreciate it. šŸ™‚

    Would you mind contacting us by email at pro [at] tri.be? We can have a better dialogue there than we can in the support forum.

    If you have any questions about any of the features included in PRO and WooTickets, please let us know–we’d be happy to answer them. šŸ™‚

    Thanks!
    Geoff

    in reply to: Wootickets + Community Events #778380
    Geoff
    Member

    Hi there, Dirk! Thanks for getting in touch. These are great questions, so let’s hit them one at a time. šŸ™‚

    1. Is it possible to manually add a ticket in the backend after a user added an event? (And can this be done in the ā€˜edit event’ part of the backend?

    Yes, it is possible to add tickets to an event after it has been submitted by a user. You’re correct: you would do it on the back end. In fact, when you try adding a ticket to an event that was submitted by Community, it will remind you that you are editing a Community event and ask whether you’re sure you want to add tickets to it (screenshot).

    2. Can the users still view and electronically check-in guests? And can this be done in the front-end?

    Checking in through the front end is a feature we don’t currently support. It’s been suggested on our UserVoice page, though, and I’d suggest adding your vote if you’re interested in seeing it included in an upcoming release. I definitely see the value in that feature!

    Does this help answer your questions? Please let me know. šŸ™‚

    Cheers!
    Geoff

    in reply to: Calendar Display questions #778354
    Geoff
    Member

    Hi there Mads! Thanks for getting in touch and welcome to the forum. šŸ™‚

    Great questions. Let’s see if we can tackle them one at a time.

    1) When I choose monthly view (ā€œMĆ„nedā€), the event names aren’t shown on the appropriate dates. Instead there is just a black dot on the dates with events.

    The calendar has a responsive layout that changes the event titles to black dots on smaller screens. The calendar thinks it’s on a small screen because it is squeezed next to the sidebar to the right of it. You can change the breakpoint for where the calendar changes to small-screen mode by adding something like this to yourĀ functions.php file:

    add_filter(‘tribe_events_mobile_breakpoint’, ‘my_tribe_events_mobile_breakpoint’, 768);

    Of course, change the 768 to a pixel value that works best with your layout.

    2) Can I remove the ā€œ+ Google Mapsā€ links from the list view?

    Yes, that should be possible. Again, you’ll probably want to write a function to remove it from that specific view. TheĀ tribe_get_map_link() function should get you what you’re looking for since it performs the Google Map URL for a given event.

    3) On the individual event pages, can I remove the link to the prev/next events?

    Absolutely. I would recommend creating a theme override for theĀ single-event.php template and remove the navigation block that contains those links. If you’re new to theme overrides, I’d check out our Themer’s Guide, which will walk you through how to customize templates.Ā Sorry, I can’t do the customization for you, but that should point you in the right direction.

    4) On the individual event pages, can I configure the plugin so the location name isn’t a link?

    I’d suggest the same tactic as #2, but work with theĀ tribe_get_venue_link() function instead. Setting this to “false” for the single event view will get you what you’re looking for.

    5)Ā It would be nice if there was a link to both the all events page and the relevant category pages (like ā€œAll eventsā€ -> ā€œParent categoryā€ -> ā€œCategoryā€), i.e. just like the standard WP category breadcrumbs.

    That’s a great idea. While that’s not something that comes out of the box, there is a link to the event category in the details box in the single event view. However, I get what you’re saying that it would be nice to have it be included in the navigation. That’s not currently a feature we support, but you could certainly continue customizing theĀ single-event.phpĀ template and use theĀ tribe_meta_event_category_name() function to display the event category where you like it to appear.

    Did I help answer all your questions? Please let me know. šŸ™‚

    Cheers!
    Geoff

    in reply to: There is no event page after installation #778256
    Geoff
    Member

    My pleasure, Marian! Thanks for following up. I wish we could pin down the exact issue, but I’m glad the standard event template works.

    I’m going to go ahead and close this thread, but please feel free to open a new one if any other questions pop up and we’d be happy to help. šŸ™‚

    Cheers!
    Geoff

    in reply to: last 5 events showing on home page #778238
    Geoff
    Member

    Hi Paul, so glad the list is working! Great job getting that rolling. šŸ™‚

    We’d be happy to give you some names of freelancers who may be able to help with the customization. Send us an email at pro [at] tri.be and we’ll give you a list. You can reference this thread when getting in touch.

    In the meantime, I’m going to close this thread but please don’t hesitate to open a new one if any other questions pop up. We’re happy to help. šŸ™‚

    Cheers!
    Geoff

    in reply to: Community Events – category not saved in draft #776560
    Geoff
    Member

    Ah, now I see what you’re saying. I see the same issue pop up when users are not allowed to edit their submissions.

    That’s definitely a bug on our end, so thanks for brining it up. I’ve logged a ticket to have that fixed in an upcoming release. Although I can’t promise a specific timetable for when it will be fixed, we will follow up with you in this thread when it is.

    Thanks again for helping us find this! I’m going to close this thread in the meantime, but will follow up when there’s more to report.

    Cheers!
    Geoff

    in reply to: last 5 events showing on home page #776552
    Geoff
    Member

    Awesome, I’m so glad you were able to get the widget area going. Great work!

    Check out the Events List widget. It sounds like you might be using the Events Calendar widget instead, which uses the full calendar layout. šŸ™‚

    Getting the images to display in the list will take a fair bit of customization. Unfortunately, I’m unable to do the custom work for you, but basically you’ll be creating a theme override of theĀ widgets/list-widget.php template and adding the default WordPressĀ get_the_post_thumbnailĀ function inside the loop where you would like the image to display. If you haven’t created a theme override before, I’d suggest heading over to our Themer’s Guide for more information, including step-by-step instructions for overriding plugin templates.

    Does that help point you in the right direction? Please let me know.

    Cheers!
    Geoff

    in reply to: Bundle Tickets #776531
    Geoff
    Member

    Thanks for the heads up, spotstudio! Sounds like that could be an effective way to go as far as bundling products together.

    I’m going to go ahead and close this thread since it seems we’ve covered the original topic, but please feel free to hit us back up if any other questions pop up. šŸ™‚

    Cheers!
    Geoff

    in reply to: EC PRO category to WP post category #775907
    Geoff
    Member

    Hi there Gianpiero,

    Great work getting theĀ tribe_events post type into your query. šŸ™‚

    You might be interested in checking out our tutorial on using theĀ tribe_get_events() function. This will give you all the flexibility you’re looking for, plus it includes an example of how to work with dates in the query. In short, you can use the arguments for start_date and end_date in your query, or even echo theĀ <i>tribe_get_start_dateĀ </i>andĀ <i>tribe_get_end_date</i> as needed.

    Will that work for you? Please let me know.

    Cheers!
    Geoff

    in reply to: Week view – How to avoid scrolling through a.m. hours? #775885
    Geoff
    Member

    Hi there Jennifer, thanks for getting in touch!

    Great question. Yes, you can set the End of Day Cutoff, which will move where the Week View starts it display. You can do that in Events > Settings > General Setting in the “End of day cutoff” dropdown.

    Will that work for you? Please let me know.

    Cheers!
    Geoff

    in reply to: Change Titles #775860
    Geoff
    Member

    Hi there Vince, welcome to the forums! šŸ™‚

    Try using this snippet in yourĀ functions.php file. You’ll want to customize it where applicable, but it will allow you to change all title instances without touching the core plugin.

    Will that work for you? Please let me know.

    Cheers!
    Geoff

    Geoff
    Member

    Awesome, so glad that helped! Thanks for confirming the answer and please don’t hesitate to hit us up if any other questions pop up. šŸ™‚

    Cheers!
    Geoff

Viewing 15 posts - 9,961 through 9,975 (of 10,150 total)