I followed this up with the developer of fonticonpicker on github, see here:
https://github.com/micc83/fontIconPicker/issues/26#issuecomment-165117138
Hi eXalted,
Im experiencing the exact same problem. Did you happen to find a solution? I realise that this is probably not an ACF issue, but a fonticonpicker issue, as disabling the fonticonpicker scripts solves this – but leaves you with a simple select instead. But I can’t figure out why it considers it a form change. The selected <option> value doesn’t seem to change. If you found a solution I would love to know how?
Cheers.
I’m getting this exact same issue. First I upgraded from v4 to v5, and everything seems fine, except for this nonce-issue. I then though it had something to do with the the upgrade, so I did a fresh install of WordPress only activating acf5 PRO resulting in the same issue (hadn’t even created any field groups yet). It does go away with wp_debug set to ‘false’, but thats not really a solution.
I dont mind editing the plugin as stated above for now. But this will only work until next update, right?
Thank you for all your hard work Elliot!
Hi elliot – thank you so much! Amazing support here!
Note: these changes should also be made to the right side of the UI on line 495, although a little different:
changing:
$title .= $p->post_type;
To:
$post_type_object = get_post_type_object( get_post_type( $p ) );
$title .= $post_type_object->labels->singular_name;
And also in the “select”, where you can select a posttype. Current code looks like this around line 451:
foreach( $field['post_type'] as $post_type )
{
$choices[ $post_type ] = $post_type;
}
Im not completely sure what the best way would be here, as i don’t quite understand the acf filters.
But that should then fix it for this field, i think. Im impressed with the quick response!
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.