You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just noticed that in v2.5.12, the image captions are appearing on the thumbnail page even though the "Show image caption" option is not checked. I was able to work around this for now by adding this to my config.inc.php (via local files editor):
$conf['show_thumbnail_caption'] = false;
It seems like even when the "Show image caption" option is NOT checked, it's still evaluating to true ({if $SHOW_THUMBNAIL_CAPTION}) in template/thumbnails.tpl.
The text was updated successfully, but these errors were encountered:
The cause seems to be that the code checks $smarty.cookies.view != 'list' to decide whether to add d-none to <div class="card-body">. This change was added in commit 3dbc47d.
Manually switching the view mode at least once would create the cookie.
FWIW, to recreate this issue, uncheck Show image caption then open the page in Incognito mode (assume the default view mode is grid mode).
I just noticed that in v2.5.12, the image captions are appearing on the thumbnail page even though the "Show image caption" option is not checked. I was able to work around this for now by adding this to my config.inc.php (via local files editor):
$conf['show_thumbnail_caption'] = false;
It seems like even when the "Show image caption" option is NOT checked, it's still evaluating to true ({if $SHOW_THUMBNAIL_CAPTION}) in template/thumbnails.tpl.
The text was updated successfully, but these errors were encountered: