By Jean on Monday, 05 December 2016
Likes 0
Views 292
Votes 0
Hi there,

i would like to have an feature request for option to edit my profile in Docker.

Take a look at the pictures.

Because docker is aways on top it would sure be a good idea to have this.
Thanks for your suggestion, we will consider to add this in the future release version.
·
Monday, 05 December 2016 10:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Just go to /plugins/system/docker/themes/default.php. There you can easily add new links or edit the existing ones or even delete unwanted links. At around line 195 you see blocks like this one:


<li>
<a href="<?php echo ESR::profile();?>">
<i class="fa fa-id-card-o"></i>
<span><?php echo JText::_('Mein Profil');?></span>
</a>
</li>


Which you can easily edit to have links related to your website structure:


<li>
<a href="/INSERT/PATH/TO/EDIT-PROFILE">
<i class="fa fa-pencil"></i>
<span><?php echo JText::_('EDIT PROFILE');?></span>
</a>
</li>


Just replace the bold ones with your own stuff. "fa-pencil" is the shortcode for the used FontAwesome icon. http://fontawesome.io/icons/ Here you will find all existing FontAwesome icons. To see the code just click the icon you want and replace the code with the existing one.

Make a copy on your local PC of that file afterwards because updating the plugin will overwrite your changes.
·
Monday, 05 December 2016 06:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for your tipp Sabih but no offense, I am still thinking this should be a part off the Docker, hence this request.
·
Monday, 05 December 2016 07:17
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post