Thursday, 26 June 2025

Menghilangkan footer Powered by Moodle kanan bawah moodle

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:

  1. Login sebagai admin Moodle.

  2. Masuk ke:

Site administration → Appearance → Theme settings → Advanced settings → Raw SCSS
atau untuk Boost:
Site administration → Appearance → Themes → Boost → Raw SCSS

  1. Tambahkan CSS berikut:

#page-footer {
    display: none !important;
}

.footer {
    display: none !important;
}

#page-wrapper #page-footer {
    visibility: hidden !important;
}
  1. Save changes.

🔵 Hasil: Semua footer Moodle hilang, termasuk “You are not logged in” dan “Powered by Moodle”.



Share:

0 comments:

Post a Comment