Hi Dave,
Is this still a problem, with only RB4T enabled? And using a default theme? I have a lot on my plate with my paid plugins, but will try to look into this eventually.
cheers,
-kathy
@daveyjake I am still able to see the quickedit terms… https://cl.ly/39e5fc3b6cf3 so I would check for conflicts from other plugins/your theme.
@helgatheviking @daveyjake
I am experiencing the same issue with taxonomy/ categories record items. clicking on “quick edit” on a taxonmy/ category makes the respective row disappear….
This does not happen on post record items
doing some debugging and it seems to go awry at
// hierarchical taxonomies (we're treating all radio taxes as hierarchical)
$('.post_category', rowData).each(function(){
var taxonomy;
var term_ids = $(this).text();
term_ids = term_ids.trim() !== '' ? term_ids.trim() : '0';
// protect against multiple taxonomies (which are separated with a comma , )
// this should be overkill, but just in case
var term_id = term_ids.split(",");
term_id = term_id ? term_id[0] : '0';
taxonomy = $(this).attr('id').replace('_'+post_id, '');
$('li#'+taxonomy+'-'+term_id ).find('input:radio').first().prop('checked', true );
});
There is no “.post_category” element so it seems to fail.
Hi all,
I think I figured this out. Would you mind testing the fix? You can find it here:
https://github.com/helgatheviking/Radio-Buttons-for-Taxonomies/tree/acf-compat
Please let me know how it goes.
Cheers!