By robert howard on Sunday, 27 March 2016
Posted in Elegant
Likes 0
Views 1.7K
Votes 0
Hi Guys

I have changed my elegant logo from text to icon, when you click the logo at the top of the elegant them it takes you to the main page /index.php but I would like to change it to /index.php/community

Could someone help with where I need to change the path for the elegant theme logo

Thanks
Rob
You will need to modify the code in /templates/elegant/index.php and locate the codes below,


<a class="navbar-brand" href="/">
<?php if ($this->params->get('show_heading_title', true)) { ?>
<?php echo JText::_($this->params->get('title', 'Elegant'));?>
<?php } ?>
</a>


Replace it with,


<a class="navbar-brand" href="/index.php/community">
<?php if ($this->params->get('show_heading_title', true)) { ?>
<?php echo JText::_($this->params->get('title', 'Elegant'));?>
<?php } ?>
</a>
·
Sunday, 27 March 2016 21:10
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mark

Wow thanks for quick response I didn't expect a reply until tomorrow as weekend here.
That's great and big thanks for your time and help.

Thanks
Rob
·
Sunday, 27 March 2016 21:40
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Rob
·
Sunday, 27 March 2016 21:59
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post