• Resolved DaveyJake

    (@daveyjake)


    When attempting to quick edit any taxonomy, whether it’s to be targeted or not by the plugin, the TR that contains the term disappears and editable field areas never appear on screen. The only way I can edit a term is by deactivating the plugin.

    Anyone else have this problem? If so, how did you fix this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author HelgaTheViking

    (@helgatheviking)

    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

    Plugin Author HelgaTheViking

    (@helgatheviking)

    @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.

    Plugin Author HelgaTheViking

    (@helgatheviking)

    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!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can’t use `quick edit` on any taxonomy regardless.’ is closed to new replies.