diff --git a/app/MetaGer.php b/app/MetaGer.php
index 1896a8255655c673f538cdde5b173f67fdeaae16..aca8fed1a1866d88120166fada7b374ae5bf9a23 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -270,6 +270,7 @@ class MetaGer
 
         $this->results = $paginatedSearchResults;
 
+        $this->validated = false;
         if( isset($this->password) )
         {
             # Wir bieten einen bezahlten API-Zugriff an, bei dem dementsprechend die Werbung ausgeblendet wurde:
@@ -280,6 +281,7 @@ class MetaGer
             if( $this->password === $password )
             {
                 $this->ads = [];
+                $this->validated = true;
             }
         }
 	}
diff --git a/resources/views/metager3.blade.php b/resources/views/metager3.blade.php
index 33e902eddb3f0643390b4995ca8046f6e1cffa1b..b1da99cd9e14d071a19e3923f7bb1ecd462994e9 100644
--- a/resources/views/metager3.blade.php
+++ b/resources/views/metager3.blade.php
@@ -24,11 +24,13 @@
 	@else
 		<div class="col-xs-12 col-md-12 resultContainer">
 	@endif
+	@if( !$metager->validated)
 	<div class="mg-panel container" style="margin-bottom:20px;max-height:90px;text-align:left; max-width:100%; padding:0px;margin-top:0px">
 		<a href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/spendenaufruf") }}" target="_blank">
 			<img src="/img/aufruf.png" style="max-width:100%;max-height:90px;">
 		</a>
 	</div>
+	@endif
 			{{-- 3-Mal Werbung --}}
 			@for($i = 0; $i <= 2; $i++)
 				@include('layouts.ad', ['ad' => $metager->popAd()])
diff --git a/resources/views/metager3bilder.blade.php b/resources/views/metager3bilder.blade.php
index 38970c170350fe35652094f6e4bc74b3e23759cc..def2b1dcc80454b51f03d4742018a57baa033d29 100644
--- a/resources/views/metager3bilder.blade.php
+++ b/resources/views/metager3bilder.blade.php
@@ -19,13 +19,13 @@
 			</ul>
 		</div>
 	@endif
-	<div class="mg-panel container result ad row" style="text-align:center;">
-		<div class="col-xs-12 col-sm-8" style="margin:0 auto;">
-			<a href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/spendenaufruf") }}" target="_blank">
-				<img src="/img/aufruf.png" style="width:100%">
-			</a>
-		</div>
-	</div>
+	@if( !$metager->validated)
+	<div class="mg-panel container" id="spendenaufruf" style="margin-bottom:20px;max-height:126px;max-width:100%;text-align:center;padding:0px;margin-top:0px">
+					<a href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/spendenaufruf") }}">
+					<img src="/img/aufruf.png" style="max-width:100%;max-height:126px;">
+					</a>
+			</div>
+	@endif
 	<div id="container">
 	@foreach($metager->getResults()->items() as $result)
 		<div class="item">
diff --git a/resources/views/metager3bilderresults.blade.php b/resources/views/metager3bilderresults.blade.php
index 73fdf5da00fac1a41c3cde303b45fe65634bfd86..7983acbd973a42b387c207328e1f8b04294d1d12 100644
--- a/resources/views/metager3bilderresults.blade.php
+++ b/resources/views/metager3bilderresults.blade.php
@@ -16,6 +16,13 @@
 			</ul>
 		</div>
 	@endif
+@if( !$metager->validated)
+	<div class="mg-panel container" id="spendenaufruf" style="margin-bottom:20px;max-height:126px;max-width:100%;text-align:center;padding:0px;margin-top:0px">
+					<a href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/spendenaufruf") }}">
+					<img src="/img/aufruf.png" style="max-width:100%;max-height:126px;">
+					</a>
+			</div>
+	@endif
 <div id="container">
 	@foreach($metager->getResults()->items() as $result)
 		<div class="item">
diff --git a/resources/views/metager3results.blade.php b/resources/views/metager3results.blade.php
index add3ebca93cdb83dbd8d4f83a1c266ce71102071..74a76920f46b3ef53276e3cf2b3dbd99ab3cc225 100644
--- a/resources/views/metager3results.blade.php
+++ b/resources/views/metager3results.blade.php
@@ -17,6 +17,13 @@
 		</div>
 	@endif
 <div class="col-xs-12 col-md-8">
+	@if( !$metager->validated)
+		<div class="mg-panel container" style="margin-bottom:20px;max-height:90px;text-align:left; max-width:100%; padding:0px;margin-top:0px">
+			<a href="{{ LaravelLocalization::getLocalizedURL(LaravelLocalization::getCurrentLocale(), "/spendenaufruf") }}" target="_blank">
+				<img src="/img/aufruf.png" style="max-width:100%;max-height:90px;">
+			</a>
+		</div>
+	@endif
 	{{-- 3-Mal Werbung --}}
 	@for($i = 0; $i <= 2; $i++)
 		@include('layouts.ad', ['ad' => $metager->popAd()])