Testing this out to replace old Bootstrap default... also to bookmark thread... :)
Offline
good morning
I enthusiastically use Bootstrap Darkroom,
maybe someone can help me, I have three wishes:
1) move the INFO title block to the left
2) lengthen the space for the wording of the photo
3) color the photo icon
very grateful to anyone who can give me suggestions about it
thank you
Vaserra
Offline
Hello.
I have installed and (a bit) modded Bootstrap Darkroom and I'm highly enjoying it :)
But I'm facing a hard issue which I'm not able to settle.
Thx in advance if you can help me.
1. I have written a redirection in LocalFiles editor to get Recent Pics as homepage :
$conf['random_index_redirect'] = array( PHPWG_ROOT_PATH.'index.php?recent_pics' => 'return true;' );
2. This is Recent pics as homepage :
3. This is main Categories page :
4. What's currently working
When navigating in recent pics, the homepage button is linked to index.php?recent_pics
which is perfect
5. What I'd like to achieve.
When navigating in categories, I'd rather have this button linked to index.php?categories
I've tried to understand how is built {$TITLE} in breadcrumb but I've failed. :(
Is there a way to do what I want ?
Last edited by Mercius (2020-10-26 16:37:19)
Offline
sorry
no idea
Offline
I guess an update will need to be made to the theme for 11.0.0beta5's new "Related Albums" feature? It messes up the menu bar:
When I turn off "Related Albums" with Advanced Menu Manager, it goes back to normal:
Offline
Has anyone suceeded in making an Instagram share button for this theme?
Offline
Hello!
Can anyone teach me how to add custom menu links when Advanced Menu Manager doesn't work (in the way I need it to)? AMM will add links, but they are not set up like the Discover, Album, ID menus and I cannot add sub-links/dropdown info.
All the tutorials I have found thus far do not appear to work with this theme, so I'm a bit stumped.
Offline
windracer wrote:
I guess an update will need to be made to the theme for 11.0.0beta5's new "Related Albums" feature? It messes up the menu bar
This is still an issue now that 11.1.0 is out officially.
Offline
windracer wrote:
windracer wrote:
I guess an update will need to be made to the theme for 11.0.0beta5's new "Related Albums" feature? It messes up the menu bar
This is still an issue now that 11.1.0 is out officially.
So when I switch Related Albums off, it will work fine or are there any other problems with Bootstrap Darkroom and the new Version 11.1.0?
Offline
kleiner_Hobbit wrote:
So when I switch Related Albums off, it will work fine or are there any other problems with Bootstrap Darkroom and the new Version 11.1.0?
So far that's the only issue I've run into with the theme and 11.1.0.
Offline
Offline
Multiple EXIF Metadata in PhotoSwipe Search & Replace filtering
Do you have more cameras or lenses to rename for PhotoSwipe caption? Here is the solution.
In Local Files Editor add this configuration based upon your gear
$conf['exif_model_change'] = array( 'OLYMPUS IMAGING CORP.' => 'Olympus', 'Weird Camera Name' => 'Friendly name' ); $conf['exif_lens_change'] = array( 'TAMRON SP 70-200mm F/2.8 Di VC USD A009' => 'Tamron 70-200mm', 'Weird name of the lens' => 'Friendly name' );
You also have to modify /include/functions_metadata.inc.php
(line 194, add the code right before return $result;)
// model replacements if (array_key_exists('exif_model_change', $conf)) { $conv_model = $conf['exif_model_change']; array_key_exists('model',$result) ? $model_key = 'model' : $model_key = 'Model'; if (array_key_exists($model_key, $result)) $result[$model_key] = str_replace(array_keys($conv_model), array_values($conv_model), $result[$model_key]); } // end of model replacements // lens replacements if (array_key_exists('exif_lens_change', $conf)) { $conv_lens = $conf['exif_lens_change']; array_key_exists('lens',$result) ? $lens_key = 'lens' : $lens_key = 'UndefinedTag:0xA434'; if (array_key_exists($lens_key, $result)) $result[$lens_key] = str_replace(array_keys($conv_lens), array_values($conv_lens), $result[$lens_key]); } // end of lens replacements
The performance warning persists!
That's all. I hope it helps somebody.
Following Piwigo upgrade may revert back this changes :-(
Last edited by FelixPiwigo (2021-01-30 22:27:14)
Offline
New version 2.4.5 with several bugs I fixed a long time ago but teekay didn't merge my pull-requests.
We're sad to have found that teekay had passed away a few weeks after releasing version 2.4.4, back in November 2019. I just thought he had no time to spend on Piwigo :-/ Rest in peace teekay. We're going to make your theme live. I'm grateful you contributed so importantly to Piwigo. This theme is very important to me.
I have a limited write access on teekay Github repository. Enough to merge pull-requests, but not enough to transfert the repository to the Piwigo Organisation yet. We'll do with that for the moment.
Offline
Oh no! So sorry to hear that! :-(
Offline
Well, reality catches up to the Internet.... RIP Teekay and thanks for your work.
Offline