How can I remove or turn off the timer progress bar of the orbit slider?
Looked at all the custom settings but don't see anything that would do that.
Inside the HTML file:
<ul data-orbit data-options="timer:false;">
<li>...</li>
<li>...</li>
</ul>
or inside the JS file:
$(document).foundation({
orbit: {
timer: false
}
});
If you use Foundation 5, see the docs here, and in case of Foundation 4 here. You can find the instructions about the JS-settings of Orbit at the end of the mentioned docs pages.
$orbit-timer-show-progress-barto false in the SCSS settings. Unfortunately, I can't get this to have any effect. (hence not posting it as an answer). - Nateowami