By Peter Neumann on Tuesday, 01 August 2017
Posted in General
Replies 5
Likes 0
Views 177
Votes 0
Hi there,

I am try to connect to advertising DJ Classified. It would be nice to connect to another link via responsive mode menu items. Is there a chance? Screenshot: http://prntscr.com/g2ulv8
Hi Peter,

You can make simple customize in the file:
.../components/com_easysocial/themes/wireframe/toolbar/default.php
and alter/add the code below

<li>
<a href="http://www.yourlink.com" class="es-navbar__footer-link">
<i class="fa fa-globe"></i>
<span>
<?php echo JText::_('DJ Classified'); ?>
</span>
</a>
</li>

after line 584
You also can make template override for this file so it will not effected if you undergo update

[Documentation on template override]: https://stackideas.com/docs/easysocial/administrators/templating/template-overrides

You're suggested to backup the file that you want to customize beforehand for precaution
·
Tuesday, 01 August 2017 16:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you Muhammad:D

I re wrote the code to:

</li><li>

<a href="https://www.ecavall.de/de/blogansicht2.html" class="es-navbar__footer-link">

<i class="a fa fa-pencil-square-o"></i>

<span>

<?php echo JText::_('COM_DJ_CLASSFIED_ADVERTISING'); ?>

</span>

</a>


The problem is my site once you login is automaticalley switching to German -I do not no wy. The link in code has the "de" county code. That means it starts allwys in german lanaguage and user have to switch.

What i need to achieve is, if user log in "english" they shoud be directed to english langauge - and of cource vice versa. Do you have any Idea Muhammad
·
Tuesday, 01 August 2017 17:31
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Peter,

Glad to hear you manage to create another menu for the dj-classified
Regarding your new inquiry, I've do some troubleshoot for the Joomla's login behavior seems like it is also behave the same way.
As I try to create a new page (Joomla login form-left hand side of the video) seems like I'm unable to login the page
However, as I try to add the Joomla login module in the page and try to login seems like the redirection of /en/ to /de/ was also occurred
refer this video: https://www.screencast.com/t/kJAa1NfsjM
As we still do not know it is Joomla issue or EasySocial issue, we will further troubleshoot on this issue
·
Tuesday, 01 August 2017 18:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

I need to ad also one more menue item to ES-Toolbar: http://prntscr.com/g3auhl
Would you please advise how to do it?

Thank you
·
Wednesday, 02 August 2017 15:01
·
0 Likes
·
0 Votes
·
0 Comments
·
This one you have to modify on this PHP file in order to achieve this :

1. Copy this file -> JoomlaFolder/components/com_easysocial/themes/wireframe/toolbar/default.php

2. Override into -> JoomlaFolder/templates/YourCurrentTemplate/html/com_easysocial/toolbar/default.php (this new folder you have to manually create it)

3. Once you done, then you can edit and add your new menu into this file.

Hope this help.
·
Wednesday, 02 August 2017 15:44
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post