Hi koendb –
Oh, I see! Sorry about the bad information. There’s no checkbox or setting for it, but you can create a small snippet of code that will let you process pages with the importer.
The bbppt_eligible_post_types
filter affects both which types can have topics create and which are covered by the importer. Somewhat confusingly, this set includes pages in some places but not others. I probably should have named it something different. :/ So you’ll need a snippet like this:
function sg_comments_to_posts_types($args) {
$args = array('post', 'page');
}
add_filter( 'bbppt_eligible_post_types', 'sg_comments_to_posts_types');
– Taken from kuching in this thread
I hope that takes care of things for you. Please let me know if you have any other questions!
– David