Logo

0
Votes
Undo
  1. dario
  2. Commercial Templates
  3. Wednesday, 30 May 2018
  4.  Subscribe via email
Hello
When we click on the logo of the template, we are redirected to a URL with "index.php" while I am using the rewrite. This generates 2 URLs (.com and com / index.php) How can I make the logo uncliceable and fix it?
Thank you in advance!
Accepted Answer Pending Moderation
0
Votes
Undo
Hi Dario

For which template are you having this issue?

Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 1
Accepted Answer Pending Moderation
0
Votes
Undo
I use "Trinity" and i would like to make that with "Colette" too soon.
  1. more than a month ago
  2. Commercial Templates
  3. # 2
Accepted Answer Pending Moderation
0
Votes
Undo
Hello

Replacing the contents of your templates header.php should resolve this issue (../templates/j51_trinity/php/layouts/header.php)..

<div id="logo">
<?php if($this->params->get('logoImage') == '1') : ?>
<div class="logo_container">
<div class="logo"> <a href="/" title="<?php echo $siteName; ?>">
<?php if($this->params->get('logoimagefile') == '') : ?>
<img class="logo-image" src="/<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/images/logo.png" alt="Logo" />
<?php elseif($this->params->get('logoimagefile') != '') : ?>
<img class="logo-image" src="/<?php echo $this->baseurl ?>/<?php echo $logoimagefile; ?>" alt="Logo" />
<?php endif; ?>
</a> </div>
</div>
<?php else : ?>
<div class="logo_container">
<div class="logo_text">
<h1 class="logo-text"> <a href="/" title="<?php echo $this->params->get('siteName'); ?>"><span>
<?php echo $this->params->get('logoText'); ?>
</span></a> </h1>
<p class="site-slogan"><?php echo $this->params->get('sloganText'); ?></p>
</div></div>
<?php endif; ?>
</div>
<div class="clear"></div>


Ciarán
  1. more than a month ago
  2. Commercial Templates
  3. # 3
Accepted Answer Pending Moderation
0
Votes
Undo
It's OK, thank you very much!! :D :D
  1. more than a month ago
  2. Commercial Templates
  3. # 4
  • Page :
  • 1


There are no replies made for this post yet.
Be one of the first to reply to this post!