Hi Haseeb,
Option to disable frontpage features and display simple static page as homepage feature is actually done in the next release of BizNez Lite but it is still waiting for approval.
And currently BizNez Lite theme doesn’t have any shortcode to show full width slider on any other page. But you can the slider in your page template using the below code:
<!-- #Slider -->
<div id="slider">
<div id="featuredfullslider">
<img src="<?php if(sketch_get_option($shortname.'_slider_img1')) { echo sketch_get_option($shortname.'_slider_img1'); } ?>" alt="Skt-slide1" data-caption="#slide-content-1" />
<img src="<?php if(sketch_get_option($shortname.'_slider_img2')) { echo sketch_get_option($shortname.'_slider_img2'); } ?>" alt="Skt-slide2" data-caption="#slide-content-2" />
<img src="<?php if(sketch_get_option($shortname.'_slider_img3')) { echo sketch_get_option($shortname.'_slider_img3'); } ?>" alt="Skt-slide3" data-caption="#slide-content-3" />
</div>
<!-- Captions for Orbit -->
<div class="orbit-caption" id="slide-content-1">
<div class="content">
<?php if(sketch_get_option($shortname.'_slider_title1')) { $title1 = sketch_get_option($shortname.'_slider_title1'); } ?>
<?php if(sketch_get_option($shortname.'_content_slider1')) { $excerpt1 = sketch_get_option($shortname.'_content_slider1'); } ?>
<?php if(sketch_get_option($shortname.'_slider_link1')) { $link1 = sketch_get_option($shortname.'_slider_link1'); } ?>
<div class="title"><a href="<?php echo $link1; ?>"><?php if (strlen($title1) > 20) { $title1 = substr( $title1, 0 , 20 ) . ".."; echo $title1; } else { echo $title1;} ?></a></div>
<div class="entry"><?php echo skt_slider_limit_words($excerpt1, '40'); ?></div>
</div>
</div>
<div class="orbit-caption" id="slide-content-2">
<div class="content">
<?php if(sketch_get_option($shortname.'_slider_title2')) { $title2 = sketch_get_option($shortname.'_slider_title2'); } ?>
<?php if(sketch_get_option($shortname.'_content_slider2')) { $excerpt2 = sketch_get_option($shortname.'_content_slider2'); } ?>
<?php if(sketch_get_option($shortname.'_slider_link2')) { $link2 = sketch_get_option($shortname.'_slider_link2'); } ?>
<div class="title"><a href="<?php echo $link2; ?>"><?php if (strlen($title2) > 20) { $title2 = substr( $title2, 0 , 20 ) . ".."; echo $title2; } else { echo $title2;} ?></a></div>
<div class="entry"><?php echo skt_slider_limit_words($excerpt2, '40'); ?></div>
</div>
</div>
<div class="orbit-caption" id="slide-content-3">
<div class="content">
<?php if(sketch_get_option($shortname.'_slider_title3')) { $title3 = sketch_get_option($shortname.'_slider_title3'); } ?>
<?php if(sketch_get_option($shortname.'_content_slider3')) { $excerpt3 = sketch_get_option($shortname.'_content_slider3'); } ?>
<?php if(sketch_get_option($shortname.'_slider_link3')) { $link3 = sketch_get_option($shortname.'_slider_link3'); } ?>
<div class="title"><a href="<?php echo $link3; ?>"><?php if (strlen($title3) > 20) { $title3 = substr( $title3, 0 , 20 ) . ".."; echo $title3; } else { echo $title3;} ?></a></div>
<div class="entry"><?php echo skt_slider_limit_words($excerpt3, '40'); ?></div>
</div>
</div>
</div>
<!--slider -->
Best,
Tikendra