• Resolved admpt1

    (@admpt1)


    Only in the “work” section I can’t use the Gutenberg block editor, in the “post” section it appears normally.

    I tried to create a custom post type with plugin, with it I can use Gutenberg, but it doesn’t show up in the Elementor list and doesn’t show the same settings as the theme.

    How can I edit works using the Gutenberg editor?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author apollo13themes

    (@apollo13themes)

    Hello ??

    You will have to make a modification to the plugin.

    Go to plugins\apollo13-framework-extensions\supports\cpt.php line ~96

    and chnage:

    $args = array(
    		'labels'        => $labels,
    		'public'        => true,
    		'query_var'     => true,
    		'menu_position' => 6,
    		'menu_icon'           => 'dashicons-screenoptions',
    		'rewrite'       => array( 'slug' => $work_slug ),
    		'supports'      => $supports,
    	);

    to

    $args = array(
    		'labels'        => $labels,
    		'public'        => true,
    		'query_var'     => true,
    		'menu_position' => 6,
    		'menu_icon'           => 'dashicons-screenoptions',
    		'rewrite'       => array( 'slug' => $work_slug ),
    		'show_in_rest' => true,
    		'supports'      => $supports,
    	);

    With kind regards.
    Air.

    Thread Starter admpt1

    (@admpt1)

    It worked, thank so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cant use Gutenberg editor in “work page”’ is closed to new replies.