Announcement

  •  » Themes
  •  » [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

#466 2020-09-23 13:56:51

homdax
Member
Sweden
2015-02-02
294

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

Testing this out to replace old Bootstrap default...  also to bookmark thread... :)

Offline

 

#467 2020-10-12 15:30:14

vaserra
Member
2013-05-17
166

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

 

#468 2020-10-26 16:35:49

Mercius
Member
2020-10-26
1

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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 :

Code:

$conf['random_index_redirect'] = array(
    PHPWG_ROOT_PATH.'index.php?recent_pics' => 'return true;'
    );

2. This is Recent pics as homepage :

http://www.bodx.net/img/piwi00.jpg

3. This is main Categories page :

http://www.bodx.net/img/piwi04.jpg


4. What's currently working
When navigating in recent pics, the homepage button is linked to index.php?recent_pics
which is perfect

http://www.bodx.net/img/piwi00.jpg
http://www.bodx.net/img/piwi01.jpg

5. What I'd like to achieve.
When navigating in categories, I'd rather have this button linked to index.php?categories

http://www.bodx.net/img/piwi02.jpg
http://www.bodx.net/img/piwi03.jpg

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

 

#469 2020-10-30 18:36:45

vaserra
Member
2013-05-17
166

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

sorry
no idea

Offline

 

#470 2020-11-11 23:59:03

windracer
Member
St. Pete, FL
2014-12-28
448

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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:

https://photos.radwans.net/_data/i/upload/2020/11/11/20201111175727-62a8a06f-me.png

When I turn off "Related Albums" with Advanced Menu Manager, it goes back to normal:

https://photos.radwans.net/_data/i/upload/2020/11/11/20201111175726-10065c9c-me.png

Offline

 

#471 2020-11-16 12:36:31

homdax
Member
Sweden
2015-02-02
294

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

Has anyone suceeded in making an Instagram share button for this theme?

Offline

 

#472 2020-12-21 04:58:36

ungodlythunder
Member
United States
2020-12-20
22

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

 

#473 2021-01-23 19:31:25

windracer
Member
St. Pete, FL
2014-12-28
448

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

 

#474 2021-01-23 23:51:59

kleiner_Hobbit
Member
Berlin
2017-08-22
67

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

 

#475 2021-01-24 01:24:15

windracer
Member
St. Pete, FL
2014-12-28
448

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

 

#476 2021-01-30 17:43:14

FelixPiwigo
Member
2021-01-30
3

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

Offline

 

#477 2021-01-30 19:06:57

FelixPiwigo
Member
2021-01-30
3

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

Code:

$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;)

Code:

// 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

 

#478 2021-02-24 16:14:37

plg
Piwigo Team
Nantes, France, Europe
2002-04-05
13791

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

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

 

#479 2021-02-24 17:05:02

windracer
Member
St. Pete, FL
2014-12-28
448

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

Oh no! So sorry to hear that! :-(

Offline

 

#480 2021-02-25 08:11:50

homdax
Member
Sweden
2015-02-02
294

Re: [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

Well, reality catches up to the Internet.... RIP Teekay and thanks for your work.

Offline

 
  •  » Themes
  •  » [Theme] Bootstrap Darkroom (w/ PhotoSwipe, HTML5 video & more)

Board footer

Powered by FluxBB

github twitter newsletter Donate Piwigo.org © 2002-2024 · Contact