• Resolved anjanphukan

    (@anjanphukan)


    The WPBakery Page Builder doesn’t show up for this.

    There is no option for this post type in the WPBakery Page Builder Role Manager setting so that the page builder shows in this post type. Here is the screenshot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Johan van der Wijk

    (@vanderwijk)

    Hi anjanphukan, this is probably because by default the content_block post type is not public. You can make the post type public by adding the following code to your theme’s functions.php file.

    function filter_content_block_init() {
    $content_block_public = true;
    return $content_block_public;
    }
    add_filter(‘content_block_post_type’,’filter_content_block_init’);

    Note that as this issue concerns the commercial WPBakery plugin for which I do not have a licence, I cannot provide further support.

    Thread Starter anjanphukan

    (@anjanphukan)

    Thank you @vanderwijk. I will try this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Doesn’t work with WPBakery Page Builder’ is closed to new replies.