Hello Kristin,
in the thread https://forums.openlp.org/discussion/4209/feature-request-chroma-key-stage-view, there was a solution to hide the bible, is it possible for the new stage view version?
Luke
if you want to show only songs on stage you can use this:
//store current slide type aka "plugin"
loadService: function(event) {
$.getJSON("/api/service/list", function(data, status) {
OpenLP.currentPlugin = "";
OpenLP.nextSong = "";
$("#notes").html("");
for (idx in data.results.items) {
idx = parseInt(idx, 10);
if (data.results.items[idx]["selected"]) {
OpenLP.currentPlugin = data.results.items[idx]["plugin"];
and then filter out e.g. this way:
updateSlide: function() {
if (
OpenLP.currentTheme ||
OpenLP.currentBlank ||
OpenLP.currentPlugin != "songs"
)
$("#currentslide").html("");