• Resolved mstrdh

    (@mstrdh)


    Please update your zTaxonomyColumns method with this suggested fix

    function zTaxonomyColumns( $columns ) {
    	$new_columns = array();
    
    	// Keep checkbox column if it exists
    	if ( isset( $columns['cb'] ) ) {
    		$new_columns['cb'] = $columns['cb'];
    		unset( $columns['cb'] );
    	}
    
    	// Add image column
    	$new_columns['thumb'] = __( 'Image', 'categories-images' );
    
    	// Merge back the rest of the columns
    	return array_merge( $new_columns, $columns );
    }
Viewing 1 replies (of 1 total)
  • Plugin Author Zahlan

    (@elzahlan)

    Hi,

    Thanks for highlighting this, fixed in the recent released version

    Regards

    Zahlan

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.