Change the Logo URL LINK

GK User
Sun Sep 16, 2012 6:44 pm
Hi

I want to change the logo URL link to be an external website rather than linking to the home page of the website.

How do I do this please?
User avatar
Expert Boarder

GK User
Mon Sep 17, 2012 7:20 am
Please open file : root/templates/gk_game_magazine/layouts/blocks/logo.php and find code in lines 24-43 :

Code: Select all
 <?php if($this->getParam('logo_type', 'image') == 'css') : ?>
     <h1 id="gkLogo">
          <a href="./" class="cssLogo"></a>
     </h1>
     <?php elseif($this->getParam('logo_type', 'image')=='text') : ?>
     <h1 id="gkLogo" class="text">
         <a href="./">
              <span><?php echo $this->getParam('logo_text', ''); ?></span>
               <small class="gkLogoSlogan"><?php echo $this->getParam('logo_slogan', ''); ?></small>
         </a>
     </h1>
    <?php elseif($this->getParam('logo_type', 'image')=='image') : ?>
    <h1 id="gkLogo">
          <a href="./">
          <img src="<?php echo $logo_image; ?>" alt="<?php echo $this->getPageName(); ?>" />
          </a>
     </h1>
     <?php endif; ?>


then you need to modify all <a> elements from :

Code: Select all
<a href="./">


to :

Code: Select all
<a href="www.yourCustomURL.com">
User avatar
Platinum Boarder

GK User
Mon Sep 17, 2012 5:09 pm
Many thanks, that did the trick.
User avatar
Expert Boarder


cron