diff --git a/scripts/pi-hole/js/footer.js b/scripts/pi-hole/js/footer.js
index cb193802..380bc485 100644
--- a/scripts/pi-hole/js/footer.js
+++ b/scripts/pi-hole/js/footer.js
@@ -676,12 +676,6 @@ function addAdvancedInfo() {
const endtime = parseFloat(advancedInfoSource.data("endtime"));
const totaltime = 1e3 * (endtime - starttime);
- // Hide advanced info if settings level is lower than 2
- if (settingsLevel < 2) {
- advancedInfoTarget.hide();
- return;
- }
-
// Show advanced info
advancedInfoTarget.empty();
diff --git a/scripts/pi-hole/js/search.js b/scripts/pi-hole/js/search.js
index cbbedd28..917899a8 100644
--- a/scripts/pi-hole/js/search.js
+++ b/scripts/pi-hole/js/search.js
@@ -174,8 +174,6 @@ function eventsource(partial) {
"using a more specific search term or increase N.
";
}
- result += "
Search took " + (1000 * data.took).toFixed(1) + " ms";
-
ta.append(result);
})
.fail(function (data) {
diff --git a/scripts/pi-hole/js/settings-teleporter.js b/scripts/pi-hole/js/settings-teleporter.js
index 5c0f0871..6a0880fe 100644
--- a/scripts/pi-hole/js/settings-teleporter.js
+++ b/scripts/pi-hole/js/settings-teleporter.js
@@ -58,12 +58,6 @@ function importZIP() {
$("#modal-import-success-message").html(text);
}
- if ("took" in data) {
- $("#modal-import-info-message").text(
- "Processing took " + data.took.toFixed(3) + " seconds."
- );
- }
-
$("#modal-import").modal("show");
})
.catch(error => {