Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi koendb –

    Pages are supported out of the box. You may need to enable the Discussion metabox to reveal the options. See the plugin FAQ for more info.

    – David

    Thread Starter koendb

    (@koendb)

    Thanks David, but I’m sorry, I wasn’t specific enough.

    I meant the automated process to generate topics for every existing page. Like it is possible for posts under Settings / Comments (guessing those nav titles, because my WP is in Dutch). Thanks!

    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

    Thread Starter koendb

    (@koendb)

    My fault!

    Thanks a lot David, I’m going to try that. Will save me a lot of work.

    Gr,
    Koen

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Bbpress for pages’ is closed to new replies.