diff --git a/metager/app/Models/Configuration/Searchengines.php b/metager/app/Models/Configuration/Searchengines.php
index 5f520ec918998cdc7be32f2e6674c5060e8da9e5..add97063e20af598218868c2eaf950dc87372ca1 100644
--- a/metager/app/Models/Configuration/Searchengines.php
+++ b/metager/app/Models/Configuration/Searchengines.php
@@ -88,7 +88,9 @@ class Searchengines
         }
 
         // Enable Yahoo Ads if query is unauthorized and yahoo is disabled
-        if (!app(Authorization::class)->canDoAuthenticatedSearch() && $settings->fokus !== "bilder" && array_key_exists("yahoo", $this->sumas) && array_key_exists("yahoo-ads", $this->sumas)) {
+        // Do not enable yahoo-ads anymore. For now temporarily
+        // ToDo: Remove or enable again
+        if (1 == 0 && !app(Authorization::class)->canDoAuthenticatedSearch() && $settings->fokus !== "bilder" && array_key_exists("yahoo", $this->sumas) && array_key_exists("yahoo-ads", $this->sumas)) {
             if ($this->sumas["yahoo"]->configuration->disabled === true) {
                 $this->sumas["yahoo-ads"]->configuration->disabled = false;
             }