I found the code buried in this file” slickr-flickr/galleria/galleria-1.4.2.js
if (!css) {
if (retryCount++ > 5) {
Galleria.raise( ‘No Theme CSS Loaded’, true );
} else {
window.setTimeout(tryLoadCss, 500);
}
}
I simply deleted the raise line completely so it take no action:
if (!css) {
if (retryCount++ > 5) {
} else {
window.setTimeout(tryLoadCss, 500);
}
}