After upgrade of both WordPress to 5.0.2 and Enfold to 4.5.2 only title, date, category and “Read more” is listed on new blog posts as can be seen on http://www.krav-maga.nu/blog/. No “Read more” is configured in Enfold layout builder and the issue only applies to new posts.
Hey kihlbaum,
Since you are using the Enfold Layout Builder to create your posts then everything has to be added to it manually, that includes the excerpt as well. If you can’t see the excerpt field then you can select to show it under Screen Options in the top right hand corner of the screen. If you want to disable the Gutenberg editor in WordPress then please add this to your functions.php file:
// disable for posts
add_filter('use_block_editor_for_post', '__return_false', 10);
// disable for post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);
Best regards,
Rikard