This simple modification will allow you to see the full version of dolphin in the header of your admin panel.
Normally dolphin only shows the first two digits of the version number in the admin panel in the upper left corner. As shown below.
This modification will change it to show all three digits. Like so.
To make this change edit administration/templates/base/_sub_header.html
Look for this at about line 7.
<div class="adm-header-text bx-def-font-h1">Dolphin <span>__version__</span></div>
Change it to this.
<div class="adm-header-text bx-def-font-h1">Dolphin <span>__current_version__</span></div>
That's it.
This should help you remember which version you last installed. I have noticed many people tend to forget what version they are currently running or what version they last installed. This will help.
https://www.deanbassett.com |
7.3.5 with responsive UNI |
Genius! Many thanks Deano.
Stuart038
There are none so blind as those that will not see. |
I can't find that code "<div class="adm-header-text bx-def-font-h1">Dolphin <span>__version__</span></div>" on my templates/base/_sub_header.html
This is all the code on the _sub_header.html
<bx_include_auto:_header.html />
<bx_injection:banner_left /> <bx_injection:banner_right /> __extra_top_menu__ <div class="sys_main_logo" style="min-width:__main_div_width__;"> <div class="sys_ml" style="width:__main_div_width__;"> <div class="sys_ml_wrapper bx-def-padding-sec"> <bx_injection:injection_logo_before /> __main_logo__ <bx_injection:injection_logo_after /> </div> </div> </div> <bx_injection:injection_between_logo_top_menu /> __top_menu__ <bx_injection:injection_between_top_menu_content /> <!-- end of top --> <bx_injection:banner_top /> <div class="sys_main_content" style="width:__main_div_width__;"> <div class="sys_mc_wrapper bx-def-margin-sec-leftright"> <div class="sys_mc">
<!--[if lt IE 8]> <div style="background-color:#fcc" class="bx-def-border bx-def-margin-top bx-def-padding bx-def-font-large"> <b>You are using a subprime browser.</b> <br /> It may render this site incorrectly. <br /> Please upgrade to a modern web browser: <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a> | <a href="http://www.firefox.com" target="_blank">Firefox</a> | <a href="http://www.apple.com/safari/download/" target="_blank">Safari</a> </div> <![endif]--> <!-- body -->
<bx_injection:injection_splash_before /> __main_splash__ <bx_injection:injection_content_before />
|
Your looking at the wrong _sub_header.html. The one in administration/templates/base/_sub_header.html is the proper one
https://www.deanbassett.com |
|
LOL. I just bitched about this yesterday to someone...... Thanks... http://towtalk.net ... Hosted by Zarconia.net! |
Hello Deano
I did what you instructed edit the sub_header.html and add _Current_Version
it not show the 3 digits version number
--- I clear cach & caches_public and tmp folders
I refresh admin but it is not showing the 3 digits ???
|
And what _sub_header.html did you edit? Exact path?
Re-read the instructions for the exact path to the proper _sub_header.html
https://www.deanbassett.com |
Yes, if you are using a template with the _sub_header.html you have to edit that one. Geeks, making the world a better place |
Yes, if you are using a template with the _sub_header.html you have to edit that one.
No. It's the admin _sub_header that has to be edited. Not the template _sub_header.
https://www.deanbassett.com |