Pages: 1
Hello,
I just updated to 2.10.1 (from 2.9.x)
Now, in the left navigation pane (theme elegant) I suddenly see all my tags (1500) were in 2.9 I could see lets say a dozen.
Because of this one needs to scroll all way down in order to log in. Besides that it is really an eye sore.
I'm pretty sure the amount of displayed tags can be limited or even completely hidden. Alas I seem to be unable to find how...
Any thoughts?
Thank you for your feedback.
Piwigo 2.10.1
PHP: 5.6.3
MySQL: 5.6.16-log [2019-10-15 09:44:47]
Graphics Library: GD bundled (2.1.0 compatible)
Last edited by ShadowHunter (2019-10-15 09:59:13)
Offline
Hi ShadowHunter,
Do you have plugins activated ?
Do you have a local configuration (file local/config/config.inc.php) ? if yes, can you copy its content here?
Offline
Hello plg,
Thank you for replying.
I found out that the landing page shows all my tags, when I drill down an album (topic > year > month) the amount of tags become less (filtered to the topic), once a single foto has been selected the tags appear in the only photo info pane (no longer in the left navigation pane) - I suppose this is as designed.
I think in 2.9 it only showed recent added tags in the left navigation pane when at the landing page.
Again, thank you for your kind support.
With best best regards,
ShadowHunter
- See screenshot for the activated plugin's
- Below the local config file:
<?php
$conf['enable_i_log'] = true;
// +-----------------------------------------------------------------------+
// | email |
// +-----------------------------------------------------------------------+
// send_bcc_mail_webmaster: send bcc mail to webmaster. Set true for debug
// or test.
$conf['send_bcc_mail_webmaster'] = false;
// define the name of sender mail: if value is empty, gallery title is used
$conf['mail_sender_name'] = 'Title';
// define the email of sender mail: if valie is empty, webmaster email is used
$conf['mail_sender_email'] = 'my_email@mail.com';
// set true to allow text/html emails
$conf['mail_allow_html'] = true;
// smtp configuration (work if fsockopen function is allowed for smtp port)
// smtp_host: smtp server host
// if null, regular mail function is used
// format: hoststring[:port]
// exemple: smtp.pwg.net:21
// smtp_user/smtp_password: user & password for smtp identication
$conf['smtp_host'] = '*******';
$conf['smtp_user'] = '*******';
$conf['smtp_password'] = '*******';
// 'ssl' or 'tls'
$conf['smtp_secure'] = 'tls';
$conf['mail_allow_html'] = true;
//Allow Video
$conf['upload_form_all_types'] = true;
$conf['sync_chars_regex'] = '/^[a-zA-Z0-9-_. ()àéèçëû&ùêôãúâîü-]+$/';
$conf['show_exif'] = true;
$conf['show_exif_fields'] = array(
'Make',
'Model',
'ExifVersion',
'Software',
'DateTimeOriginal',
'FNumber',
'ExposureBiasValue',
'FILE;FileSize',
'ExposureTime',
'Flash',
'ISOSpeedRatings',
'FocalLength',
'FocalLengthIn35mmFilm',
'WhiteBalance',
'ExposureMode',
'MeteringMode',
'ExposureProgram',
'LightSource',
'Contrast',
'Saturation',
'Sharpness',
'bitrate',
'channel',
'date_creation',
'display_aspect_ratio',
'duration',
'filesize',
'format',
'formatprofile',
'codecid',
'frame_rate',
'latitude',
'longitude',
'make',
'model',
'playtime_seconds',
'sampling_rate',
'type',
'resolution',
'rotation',
);
$conf['allow_random_representative'] = true;
?>
Offline
OK, it's related to a new features in Piwigo 2.10 that I had forgotten, see [Github] Piwigo issue #759
Add this to your local configuration (use plugin LocalFiles Editor) :
<?php $conf['menubar_tag_cloud_content'] = 'current_only'; ?>
Offline
Hello plg,
Fantastic, that did the trick! Thank you so much for your great support.
With best regards,
ShadowHunter
Offline
Pages: 1