asked my friend Alfred and we added this to header.php after <?php wp_head(); ?>
<?php
if ( is_category( 'direction' ) && is_archive() ) {
echo do_shortcode( '[vegas id="415" poster="no"]' );
} elseif ( is_category( 'photography' ) && is_archive() ) {
echo do_shortcode( '[vegas id="466" poster="no"]' );
} elseif ( is_category( 'design' ) && is_archive() ) {
echo do_shortcode( '[vegas id="426" poster="no"]' );
} elseif ( is_category( 'music' ) && is_archive() ) {
echo do_shortcode( '[vegas id="414" poster="no"]' );
}
?>
and before
</head>
so now I have 4 different sliders that show up underneath each category..
*solved*