Hey @bharatk,
I apologize for the delay in responding. If I understand correctly, it sounds like Thrive Apprentice is always filtering out those three pages. The pages exist but don’t appear which causes the unassigned item count to be incorrect.
There are two work-arounds I can think of. If you disable Thrive Apprentice, do the pages appear? If so, you can then drag them to a folder to assign them which will fix the unassigned items count.
Alternatively, if that won’t work, you could filter the folders and adjust the item count that way. You can do that by adding the following code to the end of your theme’s functions.php file:
add_filter( 'wicked_folders_get_folders', function( $folders ){
// Loop through folders and look for unassigned items folder
foreach ( $folders as $index => $folder ) {
if ( 'unassigned_dynamic_folder' == $folder->id ) {
// Reduce item count to account for
$folder->item_count -= 3;
}
}
return $folders;
} );
Hope this helps!