Viewing 1 replies (of 1 total)
  • Hi @lucienli,

    Please use this function in the child theme. In function.php:

    ?php
    ​
    function flash_toolkit_support_gutenberg_editor( $option ) {
    ​
    	$option['show_in_rest'] = true;
    ​
    	return $option;
    }
    add_filter( 'flash_toolkit_register_post_type_portfolio', 'flash_toolkit_support_gutenberg_editor' );

    Hope this helps to solve your query. Thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘Gutenberg editor for other type post default( portfolio)’ is closed to new replies.