1

Can someone give advice how to remove Joomla! 3.3.6 from admin panel? I have found all the rest after "-" including copyright and website title but no luck with text Joomla! 3.3.6. Any ideas where to search?

enter image description here

Thank you!

10101
  • 2,232
  • 3
  • 26
  • 66

3 Answers3

1

In order to remove the text "Joomla! 3.3.6" from the admin panel you have to edit the following file:

administrator/templates/isis/html/mod_version/default.php

What you have to do in there it's remove all the code in there.

borracciaBlu
  • 4,017
  • 3
  • 33
  • 41
1

There is a very simple solution without doing any code hacks:

  1. Go to "Extensions" then "Module Manager"
  2. In the left column, under "Filter" change "Site" to "Administrator" so that you are working with the Administrator modules and not the site modules.
  3. Unpublish the module called "Joomla Version"
  4. -- Or -- You can leave it published and tweak the available settings within.

Enjoy!

BradM
  • 646
  • 8
  • 18
0

In order to remove it go to this folder:administrator/templates/isis/html/mod_version/default.php. And change this code by removing the "!" character in the "if" condition

defined('_JEXEC') or die;
?>
<?php if (!empty($version)) : ?>
<?php echo $version; ?>
<?php echo "&nbsp;&mdash;&nbsp;"; ?>
<?php endif; ?>
DOUMBIA Mamadou
  • 276
  • 2
  • 10