I upgraded my test site to the new version, and everything with the theme seems to work properly in my test instance. I haven't updated my production site yet because of an unrelated matter with a plugin, but as far as the theme goes, it's just fine.
Offline
SchuminWeb wrote:
I upgraded my test site to the new version, and everything with the theme seems to work properly in my test instance. I haven't updated my production site yet because of an unrelated matter with a plugin, but as far as the theme goes, it's just fine.
Thanks, what plugin on the prod site?
Offline
I have upgraded today and the following plugins are active and working. Some where updated in the last couple of days. To be on the safe side update any plugins first and then start the upgrade of piwigo. Worked for me.
Additional Pages
AStat.2
Birthdate
EditorPlus
Fotorama
gdThumb
GThumb+
LocalFiles Editor
No Stats For Robots
OpenStreetMap
Photo Update
Read Metadata
Simple Copyright
Update Album
Offline
homdax wrote:
Thanks, what plugin on the prod site?
It's "Copyrights" and "OpenStreetMap". They both have warning mark that indicates that the plugins may not be compatible with the current Piwigo version, though they both work just fine on the test site. The way I see it, there is no hurry to update, so I'm willing to wait a little bit for the authors to push out compatibility updates. So it's more of an abundance of caution for me than anything else. I probably could do the update and be just fine, but I'm waiting a little while.
Offline
Both plugins have been updated in the last few days.
Please go to your admin panel under Tools-->Updates-->Plugins
There you should see if any plugin is offering updates. For me this was the case for the mentionened two plugins.
Offline
Yep, that got it. They now have updates, and I successfully updated to the new version.
Offline
Hello,
If anyone is having problem with PDF files showing in mobile with Darkroom, which it just displays the photo thumbnail.
This is the workaround I did
Thank you
{else if isset($current.path_ext) and $current.path_ext == 'pdf' and isset($PDF_VIEWER_FILESIZE_THRESHOLD) and $current.filesize < $PDF_VIEWER_FILESIZE_THRESHOLD}
<!-- embed not working on mobile, workaround -->
{if get_device() == 'desktop'}
<div class="row d-block justify-content-center mb-3">
<embed src="{$ROOT_URL}{$current.path}" type="application/pdf" style='width: 95%; height:calc(100vh - 200px); min-height:600px;'/>
</div>
{else}
<div class="card text-center">
<div class="card-body">
<h5 class="card-title">View this PDF</h5>
<p class="card-text">{'The PDF you requested is too large to display on this page.'|translate}</p>
<a href="{$ROOT_URL}{$current.path}" target="_blank" class="btn btn-primary">{'Click here to display it'|translate}</a>
</div>
</div>
{/if}
Offline
In the Bootstrap Darkroom theme, when using a site logo image, it has a link to to the gallery https://yoursite.com/piwigo/ Right below the logo image is an icon of a house with a link to the same place. This is redundant. I would like to change the URL of the logo to https://yoursite.com/ so people can get back to the home site or the piwigo home depending on what they click on. How can I access the URL for the logo?
<div id="wrapper">
<nav class="navbar navbar-expand-lg navbar-main bg-dark navbar-dark">
<div class="container-fluid">
<a class="navbar-brand mr-auto" href="/subdomain/piwigo/"><img class="img-fluid" src="../logo73x59.png" alt="Descriptive Words"/></a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar-menubar" aria-controls="navbar-menubar" aria-expanded="false" aria-label="Toggle navigation">
<span class="fas fa-bars"></span>
Piwigo version = 15.3.0
Host = Namecheap
Theme = Bootstrap Darkroom
Active Plugins List =
~ About 1 menu { add About to menu }
~ LocalFiles Editor { augmented access}
~ Perso Footer { add content to footer }
~ Additional Pages { add pages to menu }
~ meta { noindex }
~ Plugin Personnel {removes mailto}
~ Delete Hit/Rate { removes hits }
~ No Stats For Robots { removes hits }
~ rightClick { removes save image menu }
~ Force HTTPS { add security }
~ Perso About { add to the about page }
Offline