testing out new logo
diff --git a/promotions/logovoting/promotion-newlogo.php b/promotions/logovoting/promotion-newlogo.php
index 8dea9e2..f5301e4 100644
--- a/promotions/logovoting/promotion-newlogo.php
+++ b/promotions/logovoting/promotion-newlogo.php
@@ -301,15 +301,7 @@
     'id' => 'logo-c',
   );
 
-  $allowed_id = array(0, 1, 2);
-
-  if(isset($_GET['logo_id']) && in_array($_GET['logo_id'], $allowed_id)){
-    $id = $_GET['logo_id'];
-  }
-  else{
-    $id = rand(0, 2);
-  }
-  $survey = $logo[$id];
+  $survey = $logo[2];
 ?>
 
 <!-- Call the modal by clicking this link -->
diff --git a/promotions/promotion.php b/promotions/promotion.php
index 50e6472..166c683 100644
--- a/promotions/promotion.php
+++ b/promotions/promotion.php
@@ -1,12 +1,5 @@
 <?php
 if ($theme == "Nova" || $theme == "bootnova") {
-  // I need Ian to review this. The newlogo variable is required to load the voting functionality.
-  // We will need to remove this once we are ready to go live.
-  if(!isset($_GET['newlogo'])){
-    require_once 'promotion-default.php';
-  }
-  else{
-    require_once 'logovoting/promotion-newlogo.php';
-  }
+  require_once 'logovoting/promotion-newlogo.php';
 }
 ?>
\ No newline at end of file