Oh!, I see
But I think it is a mini-bug in QACMS's core.
I believe "QuickApps::is('view.frontpage')" fails when a customized frontpage is set via Configuration panel.
---
If in your layout is something like this lines below, they may cause the problem:
<?php if (QuickApps::is('view.frontpage')): ?>
// YOUR SLIDER HTML CODE
// WILL FAIL WHEN USING CUSTOMIZED FRONTPAGE
<?php else: ?>
// OTHER STUFF WHEN IT'S NOT INDEX (FRONTPAGE)
<?php endif; ?>
---
So, check if this patch works for you:
(Of course you must undo the "only the page list" thing you just did in order to verify if this patch solves the problem)
Regards!