Hello/Hi/Greetings,
There used to be under configuration submenu "templates".
I can't find it anymore. Was this removed with the upgrade or moved somewhere else?
Piwigo 12.0.0
OS: Linux
PHP: 7.1.33
MySQL: 5.5.5-10.1.48-MariaDB-1
Graphics library: External ImageMagick 6.9.7-4
Offline
Had the same issue.
This was already reported by Windracer when Beta testing » 12.0.0RC2
See https://piwigo.org/forum/viewtopic.php?id=31533
Last edited by BMS (2021-11-10 18:08:35)
Offline
Just installed Piwigo 12.1.0 but in this update this issue has not been resolved
Offline
Read the topic that you pointed to. You have to set the configuration value to enable it. It won't be magically "solved" by an update. Use the LocalFiles Editor plugin to add
$conf['show_template_in_side_menu'] = true;
to your local config. (or just edit local/config/config.inc.php if you know how).
Offline
Adding the code in the LocalFiles Editor just solves the problem which did not exist till introduced by the upgrade to 12.0
With the upgrade following code was added to ../piwigo/include/config_default.inc.php
734 // This variable is used to show or hide the template tab in the side menu 735 $conf['show_template_in_side_menu'] = false;
I browsed all documentation and upgrade notes and can't think of any reason for hiding the template tab other than to discourage (new) users to use this customization option. In that case it would be nice to know what the developers are aiming for.
However I think that's not the case and I assume this line got there when a developer was testing code and was forgotten about.
Until there is a real need for hiding the template tab, an update to config_default.inc.php by setting the variable to true will do the magic, without loosing the variable.
Also just trying to help;)
Offline
erAck wrote:
Read the topic that you pointed to. You have to set the configuration value to enable it. It won't be magically "solved" by an update. Use the LocalFiles Editor plugin to add
Code:
$conf['show_template_in_side_menu'] = true;to your local config. (or just edit local/config/config.inc.php if you know how).
Juste merci !
Offline