found the solution on another site
`// Add Page as a post_type in the archive.php and tag.php
function category_and_tag_archives( $wp_query ) {
$my_post_array = array(‘post’,’page’, ‘customtype’);
if ( $wp_query->get( ‘category_name’ ) || $wp_query->get( ‘cat’ ) )
$wp_query->set( ‘post_type’, $my_post_array );
if ( $wp_query->get( ‘tag’ ) )
$wp_query->set( ‘post_type’, $my_post_array );
};