How to Fix the Responsive Gallery in Ti33b if the slide timing setting is not working.

  1. Navigate to the Responsive.ascx file via FTP (siteroot/Views/ModuleTypes/Gallery)
  2. Add the following line of code after line 1: <% int interval = Model.SlideshowWaitTime*1000; %>
  3. In the opening div for the slider (it has an id="carousel") add the followingafter the data-ride="carousel" before the close of the tag: data-interval="<%= interval %> 
  1. <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<TitaniumModules.Gallery.Models.Gallery>" %>
  2. <% int interval = Model.SlideshowWaitTime*1000; %>
  3. <div id="carousel" class="carousel slide" data-ride="carousel" data-interval="<%= interval %>">
  4.     <div class="carousel-inner" role="listbox">
  5.         <%
  6.         int slidecounter = 0;
  7.         foreach (TitaniumModules.Gallery.Models.GalleryItem item in Model.GalleryItems)
  8.         {
  9.         %>
  10.             <div title="<%=item.Title%>" class="item <% if( slidecounter == 0 ){ %>active<% } %>">
  11.                 <a href="<%=item.ClickUrl %>">
  12.                     <img class="img-responsive center-block" src="<%=Url.GetFileURL(item.FileID.ToString()) %>" alt="<%=item.AltText %>">
  13.                 </a>
  14.                 <div class="carousel-caption">
  15.                     <%=item.Text %>
  16.                 </div>
  17.             </div>          
  18.         <%
  19.         slidecounter++;
  20.         }      
  21.         %>
  22.     </div>
  23.     <%if (Model.GalleryItems.Count > 1){ %>
  24.     <a class="left carousel-control" href="#carousel" role="button" data-slide="prev">
  25.         <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
  26.         <span class="sr-only">Previous</span>
  27.     </a>
  28.     <a class="right carousel-control" href="#carousel" role="button" data-slide="next">
  29.         <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
  30.         <span class="sr-only">Next</span>
  31.     </a>
  32.     <%} %>
  33. </div>