LIVE
HQ
logo hd live | Pepper Grinder
See in hd icon

Chat

X
      😁 😂 😃 😄 😅 😆 😇 😈 😉 😊 😋 😌 😍 😏 😐 😑 😒 😓 😔 😕 😖 😗 😘 😙 😚 😛 😜 😝 😞 😟 😠 😡 😢 😣 😤 😥 😦 😧 😨 😩 😪 😫 😬 😭 😮 😯 😰 😱 😲 😳 😴 😵 😶 😷 😸 😹 😺 😻 😼 😽 😾 😿 🙀 🙁 🙂 🙃 🙄
      Svenska

      Choose a game:

      Gamereactor Trailer Solution

      The Gamereactor trailer solution is a smarter way to promote games on your website, that gives the costumer an easy access to lots of trailers and videos from the game they want to buy.

      The code is delivered as an iframe, that loads all the content and uses a simple keyword system that automatically finds the relevant video for the selected game. When using the product title as the keyword, you can implement the iframe on the product page, and it will automatically find the trailers for all the games in the store, instead of looking up the trailers, one game at the time.

      Code

      <iframe width="430" height="302" frameborder="0" scrolling="no" src="https://www.gamereactor.se/grtv2/embed/?partner=none&keyword=Battlefield+3"></iframe>

      In the above example, you simply have to change the keyword, with the game title / product you want to show a trailer from. Remember to use correct URL encoding for the keyword. (See how it's done in PHP below)

      PHP Code

      <?php
      $product = 'Battlefield 3';
      
      echo '<iframe width="430" height="302" frameborder="0" scrolling="no" src="https://www.gamereactor.se/grtv2/embed/?partner=none&keyword='.urlencode($product).'"></iframe>';
      ?>

      Example


      Gamereactor Review Link Solution

      The Gamereactor Review Link Solution is a smarter way to promote games on your website, that gives the costumer an easy access to the latest review from the game they want to buy.

      In the below examples, you simply have to change the keyword, with the game title / product you want to show a trailer from. Remember to use correct URL encoding for the keyword.

      You are able to custom the look of the link you self, so it match the rest of you website. In the below example, CSS is used to make the link look like a button.

      Review Code

      <style type="text/css" id="cssstyle">
      #gr-reviewurl { background-color: #f5f7f7; border: 1px solid #78daff; border-radius: 3px; color: #000; display: inline-block; font-family: arial; font-size: 11px; padding: 6px; text-decoration: none; }
      #gr-reviewurl:hover { border-color: #00aeef; }
      </style>
      <a href="" id="gr-reviewurl" target="_blank" rel="noopener"></a>
      <script id="jscode" type="text/javascript">
      (function() {
          function async_load(){
              var s = document.createElement('script');
              s.type = 'text/javascript';
              s.async = true;
              s.src = 'https://www.gamereactor.se/partnerstuff/review_url.php?partner=none&keyword=Battlefield+3';
              var x = document.getElementsByTagName('script')[0];
              x.parentNode.insertBefore(s, x);
          }
          if (window.attachEvent)
              window.attachEvent('onload', async_load);
          else
              window.addEventListener('load', async_load, false);
      })();
      </script>

      Example


      Gamereactor Preview Link Solution

      The Gamereactor Preview Link Solution is a smarter way to promote games on your website, that gives the costumer an easy access to the latest preview from the game they want to buy.

      In the below examples, you simply have to change the keyword, with the game title / product you want to show a trailer from. Remember to use correct URL encoding for the keyword.

      You are able to custom the look of the link you self, so it match the rest of you website. In the below example, CSS is used to make the link look like a button.

      Preview Code

      <style type="text/css" id="cssstyle">
      #gr-previewurl { background-color: #f5f7f7; border: 1px solid #78daff; border-radius: 3px; color: #000; display: inline-block; font-family: arial; font-size: 11px; padding: 6px; text-decoration: none; }
      #gr-previewurl:hover { border-color: #00aeef; }
      </style>
      <a href="" id="gr-previewurl" target="_blank" rel="noopener"></a>
      <script id="jscode" type="text/javascript">
      (function() {
          function async_load(){
              var s = document.createElement('script');
              s.type = 'text/javascript';
              s.async = true;
              s.src = 'https://www.gamereactor.se/partnerstuff/preview_url.php?partner=none&keyword=Battlefield+3';
              var x = document.getElementsByTagName('script')[0];
              x.parentNode.insertBefore(s, x);
          }
          if (window.attachEvent)
              window.attachEvent('onload', async_load);
          else
              window.addEventListener('load', async_load, false);
      })();
      </script>

      Example


      Gamereactor Art Box Solution

      The Gamereactor Art Box Solution is a smarter way to promote games on your website, that gives the costumer an easy access to the cover from the game they want to buy.

      Width

      System
      Random platform
      Playstation 3
      Xbox 360
      PC
      Nintendo Wii
      PS Vita
      Nintendo DS
      Nintendo DSi
      Nintendo 3DS

      Code

      	<style style="text/css">
      #gr-boxart { text-align: center; }
      #gr-boxart #gr-boxshot { border: 1px solid #D8DFEA; width: 130px; }
      </style>
      <div id="gr-boxart"></div>
      <script id="jscode" type="text/javascript">
      (function() {
         	function async_load(){
             	var s = document.createElement('script');
             	s.type = 'text/javascript';
             	s.async = true;
             	s.src = 'https://www.gamereactor.se/partnerstuff/boxart.php?keyword=Battlefield+3&system=Xbox+360';
             	var x = document.getElementsByTagName('script')[0];
             	x.parentNode.insertBefore(s, x);
         	}
         	if (window.attachEvent)
             	window.attachEvent('onload', async_load);
         	else
             	window.addEventListener('load', async_load, false);
      })();
      </script>