E-Commerce Configuration Guide : Site configuration : Changing Themes : Theme Pack Overview : Added Flexslider
 
Added Flexslider
 
The following files were added to enable a flexslider for the Admin Panel:
App_Themes/sirius_admin/flexslider.css, App_Themes/sirius_admin/images/bg_direction_nav.png and admin/images/rmvImage.png
In admin/AdminMaster.master replace this:
<script src="../scripts/jquery.bxSlider.min.js" type="text/javascript"></script>
With this:
<script src="../scripts/jquery.flexslider-min.js" type="text/javascript"></script>
Fixed flexslider function for mobile.
In MasterPage.master under this:
<div id="wrapper">
Add this:
<div id="desktop" style="display:none"></div>
In UserControls/ItemListMulti.ascx:
In two locations, change this:
if (self == top) {
To this:
if (self == top && $("#desktop").length > 0) {