Gutenberg & Learnpress
-
Hello there,
Could you make learnpress plugin compatible with gutenberg editor, please?
As you know gutenberg editor is the favorite editor for many users.
It will be nice if it can work with learnpress together.I using this code to enable gutenberg editor for course & lesson. It’s working but Curriculum box is hidden.
add_filter( 'register_post_type_args','add_gutenberg_support', 10, 2 ); function add_gutenberg_support( $args, $post_type ) { if ( in_array( $post_type, [ 'lp_course', 'lp_lesson', ] ) ) { $args['show_in_rest'] = true; } return $args; }
Before enable gutenberg:
https://prntscr.com/pzxr4l
After enable gutenberg:
https://prntscr.com/pzxry8Thanks for your support!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Gutenberg & Learnpress’ is closed to new replies.