Support

Account

Forum Replies Created

  • Hey guys,

    It looks like the fix is available with of 5.4 RC1! http://d.pr/i/1b6ZB

    If you go to your Account, then there by download, click “See all versions”, there is the download link.

    EDIT:

    I just wanted to say that I did the update, and got it to work! There doesn’t appear to be a UI for setting the API key just yet (or maybe I’m just missing it), but it’s easy enough to set with a filter:

    add_filter('acf/settings/google_api_key', function () {
        return 'your-api-key';
    });

    You also need to make sure that the Google Maps JavaScript API is enabled for using with your project in the Google APIs Developer Console where you obtained your key.

    Cheers!

  • Thanks John,

    I understand why it’s not working the way I want. This is more of a feature request, not really a bug report. I should have created this thread in that forum.

    What I’m looking for is the ability to define a field group rule for adding a field group to the term add/edit screen for all taxonomies that belong to a specified post type.

  • As a temporary workaround, I was able to achieve my desired choices by:

    • filtering the query args
    • running my own query within the filter callback
    • preprocess and select my desired choices
    • return modified args with my desired post_ids set in the $args['post__in'] and $args['posts_per_page'] = count($args[post__in])

    This is of course inefficient as it will take those arguments and query again for them, but it works for now!

Viewing 3 posts - 1 through 3 (of 3 total)