• I am using WPBakery Page Builder, and find it frustrating that I cannot use that editor (also still using Classic Editor) to create Help Documents. WPBakery has a strange little bug that makes it difficult to consistently use the Page Builder with anything but Pages (to include posts). In WPBakery Page Builder Role Manager – there are checkboxes for all the various post types in use.

    I finally found a piece of code to add to the child theme function.php – this is what I have in place and it works for me – ‘wp-help’ appears to be the post type:

    
    add_action( 'vc_before_init', 'Use_wpBakery' );
    function Use_wpBakery() {
      $vc_list = array('page','post','wp-help');
      vc_set_default_editor_post_types($vc_list);
      vc_editor_set_post_types($vc_list);
    }
    

    I thought this was working with the wp-help above — it does allow the editor for the Help Document creation, but the WPBakery shortcodes display from the main Publishing Help Dashboard when scrolling down through the available documents. Only the back-end editor works too – not the front-end editor. Perhaps I’m using the wrong post_type in my list or need something else in a function to get it to display correctly in the Publishing Help admin.

    Cheers!

  • The topic ‘Looking for Solution Using WPBakery Page Builder with WP Help’ is closed to new replies.