• Resolved Nate Allen

    (@nateallen)


    If you Bulk Edit custom post types, it deletes any terms that were saved for each post.

    To reproduce:

    1. Select multiple posts in the post list screen
    2. In the Bulk Actions select box choose Edit
    3. Change something like the author or status
    4. Click Submit

    It will remove whatever terms those posts had assigned.

    This can be fixed by adding this:

    
    // If posts are being bulk edited, we don't want to do anything.
    if ( ! empty( $_GET['bulk_edit'] ) ) {
    	return $post_id;
    }
    

    In the first line of the save_single_term function in the class-wordpress-radio-taxonomy.php file.

Viewing 1 replies (of 1 total)
  • Plugin Author HelgaTheViking

    (@helgatheviking)

    Thanks for posting this at Github, as I must’ve missed this. But for everyone else, this should be resolved in 2.4.4

Viewing 1 replies (of 1 total)
  • The topic ‘Bulk Edit removing terms’ is closed to new replies.