Trisha

Forum Replies Created

Viewing 15 posts - 211 through 225 (of 343 total)
  • Author
    Posts
  • Trisha
    Member

    Hi Jack!

    Sure thing!! We’ll keep you posted 🙂

    Cheers,
    Trisha

    Trisha
    Member

    Hello!

    Thank you for using The Events Calendar, I can help with this!

    You should already be seeing the title of the event. Is it possible that it has already been customized? The template that controls the output for the shortcode is in ‘event-tickets/src/views/shortcodes/my-attendance-list.php‘.

    If you prefer you can copy the template to your theme directory by following the instructions on Line 7 of the template. You can then make changes as needed to make the title more prominent or change how the list is output.

    If much more detailed set of instructions can be found in our themer’s guide here: https://theeventscalendar.com/knowledgebase/themers-guide/

    I hope this helps! Let me know how it goes 🙂

    Cheers,
    Trisha

    Trisha
    Member

    Hi Denise,

    Wow, I can definitely see your frustration! I think I know what’s going on but let’s try something to be sure.

    The code you sent is (I assume) copied directly from the single-event template for widgets. When I paste that as it is into my theme I don’t get the correct date because there are a few missing variables…so try this: Paste the following code at the very top of the same file that you got this code from.

    $mini_cal_event_atts = tribe_events_get_widget_event_atts();
    $post_date = tribe_events_get_widget_event_post_date();
    $post_id = get_the_ID();
    $organizer_ids = tribe_get_organizer_ids();
    $multiple_organizers = count( $organizer_ids ) > 1;
    $city_name = ! empty( $city ) ? tribe_get_city() : '';
    $region_name = ! empty( $region ) ? tribe_get_region() : '';
    $zip_text = ! empty( $zip ) ? tribe_get_zip() : '';
    $has_address_details = ! empty( $city_name ) || ! empty( $region_name ) || ! empty( $zip_text );

    This is, of course, provided it’s not already there. If it is we have a different problem 😉

    Let me know how it goes!

    Cheers,
    Trisha

    in reply to: Getting "File Doesn’t Exist" Error on Submission #1270282
    Trisha
    Member

    Hi John,

    Thank you for using The Events Calendar! I understand your frustration here and hopefully, I can help out 🙂

    The reason the fix you have isn’t working is because ‘/events/community/add’ isn’t really a page as far as WordPress is concerned. It is one of the ‘views’ that Events Community provides and is generated dynamically by a rewrite rule.

    The good news is that you can modify the rewrite rules using the WordPress rewrite API. We have a knowledgebase article that should help get you started. You can find that here: https://theeventscalendar.com/knowledgebase/renaming-views/

    Scroll down to the ‘View Slugs’ heading to find the information you need. The idea is to create an actual page with the slug you want to use and then add the rewrite rule using the method outlined in the article.

    I hope this help! Let me know how it goes 🙂

    Cheers,
    Trisha

    Trisha
    Member

    Hi Michael!

    Thanks for reaching out, I can help with this!

    The links are visible they just aren’t styled at all and not where you’d expect them to be so they are super easy to miss! On your calendar, they are in the very center, top and bottom.

    To get the styling you see on the Full Styles selection add the following code to your custom css:

    #tribe-events-header .tribe-events-sub-nav li,
    #tribe-events-header .tribe-events-sub-nav .tribe-events-nav-previous,
    #tribe-events-footer .tribe-events-sub-nav li,
    #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-previous {
    float: left;
    margin-right: 5px;
    text-align: left;
    }

    #tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next, #tribe-events-footer .tribe-events-sub-nav .tribe-events-nav-next {
    float: right;
    margin-left: 5px;
    text-align: right;
    }

    This should get you set up, let me know how it goes!

    Cheers,
    Trisha

    in reply to: Next Event URL, Date, Title, and thumbnail #1269870
    Trisha
    Member

    Hi, Logan!

    Thanks for your patience, this was a bit of a puzzle on our end as well. Grabbing a post object or post ID is easy work for a normal post in WordPress (as you know). But since we’re sorting the events by the event start date it was a bit more complex.

    I ended up modifying the query we use for the ‘get next event’ link to make it happen.

    See if this works for you:

    https://gist.github.com/trishasalas/1ebb4428f59a6873af22af176f7bee79

    You’ll need to move single-event.php into your theme as outlined in the themer’s guide here: https://theeventscalendar.com/knowledgebase/themers-guide/

    Let me know how it goes!

    Cheers,
    Trisha

    in reply to: Search Bar Not Working #1269846
    Trisha
    Member

    Hi, Michelle!

    Thanks for reaching out! I just ran a quick test on your events page and I was able to see results. See the screenshot below:

    What are browser/Operating System are you using? It could be a more system specific type of error. You might also try a couple of different computers to see if there’s a pattern to what’s happening.

    Let me know what you find out! I’m happy to help troubleshoot this with you!

    Cheers,
    Trisha

    Trisha
    Member

    Hi, Amy!

    Thanks for reaching out and thanks for being such a loyal customer ?

    It does sound like you’ll need some developer help with the conversion. We don’t offer that as part of our service but we have a list of recommended developers here:  https://theeventscalendar.com/knowledgebase/find-a-customizer/

    Definitely keep us posted if any other questions come up and we’d be happy to help.

    Cheers,
    Trisha

    in reply to: Publish category of events on second site #1269801
    Trisha
    Member

    Hi, Josh!

    Thanks for reaching out! I think I may have a solution for you but at the moment it’s not automated.

    To make this work you’ll need to purchase Event Aggregator, you can find out more about that here: https://theeventscalendar.com/product/event-aggregator/

    First, download the .ics file from the correct category on your btu.org site. Here’s an example:

    Then you would import the file into using the tab under “Events > Import” and choose .ics file.

    I hope this helps! Let me know if you have any other questions, I’m happy to help 🙂

    Cheers,
    Trisha

    Trisha
    Member

    Hello, Jack!

    Thanks for reaching out! I’m sorry to hear about this but glad you were able to find a fairly painless resolution.

    I’ll log a ticket for the bug and mark this conversation as ‘Pending Fix’ so you’ll know when that happens.

    Cheers,
    Trisha

    in reply to: PHP Hook for Event Start and Event End #1269777
    Trisha
    Member

    Hi Matthew,

    There aren’t any hooks specific to right before or after an event. There are hooks in many of our templates that you may be able to utilize for your purposes. Look in ‘[plugin-dir]/src/views’ for both The Events Calendar and Events Calendar Pro to find the templates.

    Additionally, these article in our knowledgebase may be helpful to you: https://theeventscalendar.com/knowledgebase/template-overview/

    Hopefully, this will get you what you need! Let me know how it works out or if you need anything else, I’m happy to help!

     

    in reply to: Events Cal Pro Google Maps Not Displaying with API Key #1269772
    Trisha
    Member

    Hello, Cheryl!

    Thanks for using The Events Calendar! I’m sorry to see this is happening. After looking at your site I suspect it might have something to do with a conflict that is happening with the WP Rocket plugin.

    After looking at your site I suspect it might have something to do with a conflict that is happening with the WP Rocket plugin. To confirm this would you mind going through the steps in our testing for conflicts guide here?

    Let me know what you find out!

    Cheers,
    Trisha

    Trisha
    Member

    Hi, Audra!

    I can help with this! What are you seeing when you use the Skeleton Styles? When I have twenty sixteen activated with the Skeleton Styles I see the select box as well as the list you mention.

    I did a quick mockup using the ‘Extra CSS’ option in the Customizer to hopefully show you a starting point. You can see the result of that below:

    I suspect that if you’re seeing something different that the Tribe Bar is inheriting some styles from your theme. That’s not unexpected and it’s something we try to allow to happen when it can so that the Calendar matches your theme as much as it can. If your theme styles are being inherited you’ll just need to overwrite those.

    I’d recommend moving the files to your theme directory before doing the customization, that way they won’t be overwritten during your next upgrade. You can find out more about that in our themer’s guide here: https://theeventscalendar.com/knowledgebase/themers-guide/

    The files you’ll be most interested in are

    • the-events-calendar/src/views/modules/bar.php and
    • the-events-calendar/src/resources/css/tribe-events-skeleton.css

    I hope this answers your question! Let me know how it goes 🙂

    Cheers,
    Trisha

    in reply to: Making the Google maps link on by default #1269743
    Trisha
    Member

    Hello, Shane!

    Thanks for the reply and sorry that didn’t work as expected. I am glad, however, that it mostly worked 🙂

    Can you think of anything different about the links that it didn’t work on? If not no worries, I’ll make a note of it and keep my ears open.

    Let me know if you need anything else, I’m happy to help!

    Cheers,
    Trisha

    in reply to: Filter Bar Location has Duplicate Autocomplete Entries #1269303
    Trisha
    Member

    This reply is private.

Viewing 15 posts - 211 through 225 (of 343 total)