Guru Duan, bagian “You are not logged in…”, “Get the mobile app…”, “Switch to the standard theme”, dan “Powered by Moodle” itu adalah footer standard Moodle. Untuk menghilangkannya, ada 3 cara aman (tergantung theme yang digunakan). Cara di bawah aman untuk Moodle 4.5.
✅ CARA 1 — Menghilangkan Footer via Custom CSS (PALING MUDAH)
Bisa dilakukan tanpa mengedit file PHP.
Langkah:
Login sebagai admin Moodle.
Masuk ke:
Site administration → Appearance → Theme settings → Advanced settings → Raw SCSS
atau untuk Boost:
Site administration → Appearance → Themes → Boost → Raw SCSS
Tambahkan CSS berikut:
#page-footer {
display: none !important;
}
.footer {
display: none !important;
}
#page-wrapper #page-footer {
visibility: hidden !important;
}
Save changes.
🔵 Hasil: Semua footer Moodle hilang, termasuk “You are not logged in” dan “Powered by Moodle”.
0 comments:
Post a Comment