Hey kmarat! Sorry I didn’t get back to you earlier. That is possible but it would require you to add/edit a bit of code. Now, I’m going to be releasing a premium version of this plugin within probably the next month or so that will have this option built in. If you’d like to be alerted when I release the plugin you can subscribe to my mailing list over at wp-vegas.com
If you want to try your hand at editing some code to get this done right away what you’ll want to do is edit your header.php (just as a warning if you’re not familiar with PHP or editing code at all you may want to hire a developer to do this for you because if it’s done wrong it can break your whole website)
In your header.php you’ll want to add this code
<?php
/**
* The template for displaying front page pages.
*
*/
?>
<?php get_header(); ?>
<?php echo do_shortcode( '[vegas id="5" fade="4000" delay="5000"]' ) ?>
This is obviously just an example and you’ll need to change out the id to the id of your slideshow and your header.php will look a little bit different. My point being that you’ll throw in the do_shortcode under your theme’s get_header()
Let me know if you need anything else or want me to clarify anything for you!