 
					Hello @paal, In functions.php, add this code to prevent Beans from removing post meta in CPT by default:
add_filter( 'beans_pre_post_meta', 'yourthemerpefix_keep_post_meta' );
function yourthemerpefix_keep_post_meta( $pre ) {
    // Don't short-circuit for 'YOURCUSTOMPOSTTYPE' post type.
    if ( 'YOURCUSTOMPOSTTYPE' === get_post_type() ) {
        return false;
    }
    return $pre;
} 
					Hey Mathieu
That worked wonders!!! Thank you!
 
					Hello Mathieu and others
https://webkonsulenten.com/nyheter/ The default blog page shows the default post meta: Date, author, add a comment as well as the default Category and tags.
A custom post type archive page looks like this: https://webkonsulenten.com/nettmagasin-arkiv/ Post meta shows: Date, author and add a comment. It does not show the (CPTui plugin) CPT taxonomies category (ies) or Tags.
How do I show the CPT category and tags on the CPT archive as well as other CPT pages?
I am working on a Beans tutorial on how to use Custom Post Types with Beans. While I am also working on a religious Norwegian news site that uses two different CPT's
