Hello There,
Thanks for updating in!
Please keep in mind that recent post elements will only display posts and portfolio items.
You are referring to a custom post type “Einsatzberichte” which will not be displayed in the recent post element. If you want to include this in the element, you will need a custom code. Since the child theme is set up, please add the following code in your child theme’s functions.php file
// Add einsatz type to recent posts element
// =============================================================================
function add_einsatz_post_type( $types ) {
$types['einsatz'] = 'einsatz';
return $types;
}
add_filter( 'cs_recent_posts_post_types', 'add_einsatz_post_type' );
// =============================================================================
And then after that, please edit the page again and in your recent post element, select “Einsatz” as the post type.
Hope this helps.