Brook

Forum Replies Created

Viewing 15 posts - 3,241 through 3,255 (of 4,796 total)
  • Author
    Posts
  • Brook
    Participant

    Excellent! Thanks for reporting this and bearing with us while we identified and fixed it. Cheers!

    – Brook

    in reply to: 404 on events detail pages #922522
    Brook
    Participant

    Thanks, you too travellearner. – Brook

    in reply to: Translating "the title" of a filter in filterbar #922509
    Brook
    Participant

    No problem! I actually think I understood you. However, my response might have been a bit confusing. Anytime you talk about WP Filters and Filter bar filters in the same sentence, it gets confusing when you just refer to one of them as “filter”.

    To change that bit of text you would want to use one of the WP Filters I mentioned, currently you are trying the gettext WP Filter which would not apply to these. Here is an example using “tribe_events_filter_title”:

    function tribe_change_filterbar_filter_title ($title) {
    
    if ($title == 'Event Category') {
    $title = 'My custom text';
    }
    
    return $title;
    }
    add_filter('tribe_events_filter_title', 'tribe_change_filterbar_filter_title');

    Does that make sense now? Are you able to modify that example code to get you what you need? Cheers!

    – Brook

    in reply to: Clicking on Google Map link shows a map of the USA #922312
    Brook
    Participant

    Hello tinsterman,

    I have seen this once before. Unfortunately it is not something we can really fix. We rely on Google Maps API to parse the addresses. It simply does a better job when parsed via PHP then it does through URLs. It’s sort of a bug with Google Maps!

    However there is a solution. Visit this page, and type in whatever you have to in the search box to get Google to center on your venue. Then copy/paste that information exactly into your venue data. It should now be the same for both the embedded map and the link.

    Does that make sense? Is there anything more I can do?

    Cheers!

    – Brook

    in reply to: Need help modifying timestamp location in Events List widget #922308
    Brook
    Participant

    Hello AJ,

    Unforunately it sounds like you are facing a bug introduced in version 3.9 of our plugin. 🙁 We do have a version 3.9.1 in the works which fixes this. In the mean time we have a snippet that can be pasted in your theme’s functions.php file that also fixes it! If you don’t wish to wait, that snippet is an easy immediate remedy.

    Did that work? Can I help you further at all?

    Cheers!

    – Brook

    Brook
    Participant

    Howdy Hunnicut,

    Those solutions apply to a much older version of our plugin. It is now easier than ever to change that title, by means of a simple theme override. Specifically /pro/modules/meta/additional-fields.php . In side you will find the title as an HTML element, and you can change it. Here is a tutorial on how to do a theme override.

    If you need further help please feel free to open a new topic. We would love to further assist. I am actually going to rearchive this one as per our forum rules of one customer’s issue per thread. Cheers!

    – Brook

    in reply to: Translating "the title" of a filter in filterbar #922302
    Brook
    Participant

    Howdy bitfactory,

    That’s a great question. I recently had to do something similar. My solution was to tap into the filter tribe_get_option and dynamically change the content from there if it matched. Another, probably better filter for your specific case would be “tribe_events_filter_title”. All filterbar filter titles should be run through that. If it matches, say Category or whatever you’ve named it, you can swap it out.

    Does that make sense?

    Cheers!

    – Brook

    in reply to: refund / ics import #922299
    Brook
    Participant

    This topic is getting archived since it appears to be resolved. Thanks!

    – Brook

    in reply to: Events Calendar Pro and Formidable Forms #922298
    Brook
    Participant

    Thanks for sharing that information LB! That is great to hear.

    I am going to archive this topic as per our policy on old topics that the original posters has not responded to in months. But if anyone has questions about how to get Formidable Forms please feel free to open a new topic. Cheers!

    – Brook

    in reply to: Events Calendar Pro and Formidable Forms #922297
    Brook
    Participant

    Thanks for sharing that information LB! That is great to hear.

    I am going to archive this topic as per our policy on old topics that the original posters has not responded to in months. But if anyone has questions about how to get Formidable Forms please feel free to open a new topic. Cheers!

    – Brook

    in reply to: Is there a way to hide events from unregistered users? #922296
    Brook
    Participant

    Since this topic has gone for quite a while without a response we are going to archive it to prevent others, especially spambots, from trying to resurrect it. Cheers!

    – Brook

    in reply to: Display Past Events in Reverse Order Snippet #922292
    Brook
    Participant

    Howdy again Martha,

    I really appreciate your pointing this out. Last week was so busy with our new version launch that I did not have time to investigate a solution and possible reqrite the snippet. Today I made the time, investigated, and I have not come up with a snippetable fix. There are forces conspiring here that basically make the two queries appears virtually identical, namely the list widget and regular list query.

    The only fix I can think of is to add some identifying information to our widget that will prevent this from happening. If we create a theme override for that widget ( /pro/widgets/list-widget ), then add in a variable like $tribe_is_widget and set it true, then we can modify the snippet to check for that variable. So we would make that var a global, and change this line:

    if ( tribe_is_past() || $past_ajax ) {

    to:

    if ( tribe_is_past() && $tribe_is_widget !== true || $past_ajax ) {

    You would also want to set $tribe_is_widget to false on the last line of your theme override, if your widgets appear before the content on your page.

    I really wish there was a better option. This is the only solution I can find though if you are running both on the same page. I hope the above does not sound like gibberish. If it does, that snippet is probably just not going to work for you.

    Does that make sense? Is there anything I can clarify?

    – Brook

    Brook
    Participant

    Howdy Ariddle,

    That should be fixed in the latest version of our plugin, 3.9. It was released last week. Are you running version 3.9 of both The Events Calendar and Events Calendar Pro? If so, is it now fixed for you? You might need to flush your cache in your browser, and on your server if you have a caching plugin, before testing.

    – Brook

    in reply to: 404 on events detail pages #922272
    Brook
    Participant

    Awesome! That is the best of news. After some research the error seems like the result of a plugin conflict. Possibly one whose impact still remains even after it is disabled. Regardless the last snippet, the one that fixed it, is a perfect fix and can be left in your functions.php file permanently.

    You can feel remove the other snippets from your functions.php now.

    It’s totally cool that you did not flush the permalinks. I was only advising that out of an abundance of preparedness. I was not sure you would need to, but if you did it can’t hurt. They will flush themselves from time to time, like when you update a plugin. No worries there, with that final snippet in your theme you should be good from what I have seen.

    Please let me know if you need anything else. If not, mind marking this resolved? Cheers!

    – Brook

    in reply to: Adding a Custom Registration Link to Add Event Page #922270
    Brook
    Participant

    That was our bad. We are still working on restoring all of the links that existed prior to the new site’s launch. Here is the file now that we have migrated. That link might go down after a few weeks, but it is working now.

    Cheers!

    – Brook

Viewing 15 posts - 3,241 through 3,255 (of 4,796 total)