Hi Caridad,
Using examples on this site, I've successfully built my carousel slider in a view, thanks. Now I have only one problem. I'm not using the view pagination, as I prefer to use the carousel indicators for navigation. This all works perfectly if I click one of the indicators to start the cycle. Otherwise, the slider just sits on the first slider. I suspect I need to use Javascript to start the cycle automatically, but can't figure out how to do this. According to the Bootstrap documentation, I should be able to use $('.carousel').carousel('cycle') or $('.carousel').carousel(0), but pasting either of these into the JS editor doe nothing. Note, the problem here is not likely Views, but instead the fact that I'm totally new to Javascript, so I'm in need of one small example.
Note, here is my layout code for the slider:
[wpv-layout-start] <div class="row fluid span12"> <div id="feature-carousel" class="carousel slide"> <ol class="carousel-indicators"> <li data-target="#feature-carousel" data-slide-to="0" class="active"></li> <li data-target="#feature-carousel" data-slide-to="1"></li> <li data-target="#feature-carousel" data-slide-to="2"></li> </ol> <div class="carousel-inner"> [wpv-items-found] <!-- wpv-loop-start --> <wpv-loop> [wpv-item index=1] <div class="item active"> [types field="slide-image" size="full" align="none"][/types] </div> [wpv-item index=2] <div class="item"> [types field="slide-image" size="full" align="none"][/types] </div> [wpv-item index=3] <div class="item"> [types field="slide-image" size="full" align="none"][/types] </div> </wpv-loop> <!-- wpv-loop-end --> [/wpv-items-found] [wpv-no-items-found] [wpml-string context="wpv-views"]<strong>No items found</strong>[/wpml-string] [/wpv-no-items-found] </div> </div> </div> [wpv-layout-end]