Announcement

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

#316 2018-05-04 19:19:32

Pho3nyx
Member
2018-03-29
38

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

I use hosted version too with the difference that i call the gallery with iframe

Offline

 

#317 2018-05-04 21:30:57

teekay
Member
2013-06-12
427

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

Pho3nyx wrote:

Hello i have two questions,
I run. a WordPress site and i display piwigo gallery inside an iframe, it all works except when i click on full screen image (PhotoSwipe Slideshow) the image open in the iframe area and not in full screen, there is a way to open in full screen?

No, because the iframe limits the viewport to its size. Running in iframe isn't supported. You can use the API to properly integrate Piwigo into other applications, requires some coding skills, though. But AFAIK there is or was a Piwigo Wordpress plugin at some point.

How to disable the social icons in "Picture details page" mod but not in "PhotoSwipe Slideshow” mod?
Thanks in advantage for help.

You can use custom CSS, like

Code:

#theImageShareButtons {
  display: none;
}

mcl wrote:

This happens to me as well on the hosted version - no Wordpress - you have to select the diagonally opposed arrows (full screen) again to get back to the photo swipe.

Also the 'i' icon (ie  information) also breaks photo swipe and you have to select the diagonally opposed arrows to get back to photo swipe.

Using theme : bootstrap dark.

Err, the info icon in PhotoSwipe is a link to the picture details page, actually.

Last edited by teekay (2018-05-04 21:31:42)

Offline

 

#318 2018-05-04 23:46:52

Pho3nyx
Member
2018-03-29
38

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

Ok, thanks teekay, the wordpress plugin just put a link to the gallery, nothing fancy

Last edited by Pho3nyx (2018-05-05 00:03:50)

Offline

 

#319 2018-06-08 07:27:49

sport
Member
2014-03-16
93

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

teekay wrote:

My idea was to put it in the AdditionalPages's script section for the carousel code, but having it globally is an even better idea. Take care that menubar_categories.tpl will be overwritten on theme updates. Use themes/bootstrap_darkroom/local_head.tpl instead with smarty syntax, like:

Code:

{footer_script require='jquery'}
$(document).ready(function() {
  $('#categoriesDropdownMenu .dropdown-menu').prepend('<a class="dropdown-item" href="index/categories">All Albums</a><div class="dropdown-divider"></div>');
});
{/footer_script}

That's persistent and the cleanest way.

thx, i added this.
but it gave a error page not found.
1 changed index/categories to index.php?/categories and it worked.
But still all sub albums are collapsed.
http://sportplaatje.nl/

Last edited by sport (2018-06-08 07:29:08)

Offline

 

#320 2018-06-08 10:17:32

deheme
Member
France
2014-12-12
104

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

Hello,

Bootstrap Darkroom is a terrific theme...but hacks are not straightaway.

The question is how does the hierarchy of albums presented in the view recent_cats could be limited to the album name only (and not all blabla/blabla/blabla...). In case of >2 deep, the album name is masqued.

https://photo.deheme.com/index/recent_cats

Thanks for any tip.
DéHème
Sorry for the FrenGlish

Piwigo 2.9.3
Système d'exploitation: Linux
PHP: 7.0.30
MySQL: 5.5.5-10.0.35-MariaDB
Bibliothèque graphique: External ImageMagick 6.7.2-7

Offline

 

#321 2018-06-08 11:37:56

teekay
Member
2013-06-12
427

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

deheme wrote:

Hello,

Bootstrap Darkroom is a terrific theme...but hacks are not straightaway.

The question is how does the hierarchy of albums presented in the view recent_cats could be limited to the album name only (and not all blabla/blabla/blabla...). In case of >2 deep, the album name is masqued.

https://photo.deheme.com/index/recent_cats

Piwigo sets the $cat.NAME variable that way (see mainpage_categories.tpl), so this isn't really theme-specific.

Offline

 

#322 2018-06-08 11:47:24

teekay
Member
2013-06-12
427

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

sport wrote:

But still all sub albums are collapsed.
http://sportplaatje.nl/

Hm, I cannot reproduce this on any of my sites. Maybe some plugin forces all levels to be added in the top level?

Offline

 

#323 2018-06-08 13:21:58

sport
Member
2014-03-16
93

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

No idea, thx for the quick response.
i will check them all, one by one.

Offline

 

#324 2018-06-11 01:03:53

MarcRJacobs
Member
Bavaro, Dominican Republic
2013-05-27
36

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

Hi;

I had to move my Piwigo site. The move is complete and everything is working fine, except the carousel on my home page.

I call for my data using:
          ws.php?format=json&method=pwg.categories.getImages&cat_id=83&per_page=11

This seems to work fine and does return the expected json out put, but the images never load and the previous/next arrows are at the very top.

Can anyone help me out here?

The site is located at: https://www.marcrjacobs.com/photos

Thanks,
Marc

Offline

 

#325 2018-06-11 07:34:52

deheme
Member
France
2014-12-12
104

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

Hello Marc,

Did you try with a / before ws?
/ws.php?format...

Also, you should verify the href because they are not good in your page : https://www.marcrjacobs.com/_data/i/gal … 99x200.png  the link /photos/ is missing no?
Enjoy!
DéHème

Last edited by deheme (2018-06-11 07:55:51)

Offline

 

#326 2018-06-11 08:46:03

teekay
Member
2013-06-12
427

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

@Marc: should be /photos/ws.php now

Offline

 

#327 2018-06-11 15:42:59

MarcRJacobs
Member
Bavaro, Dominican Republic
2013-05-27
36

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

Thanks, that seems to be it.

Marc



deheme wrote:

Hello Marc,

Did you try with a / before ws?
/ws.php?format...

Also, you should verify the href because they are not good in your page : https://www.marcrjacobs.com/_data/i/gal … 99x200.png  the link /photos/ is missing no?
Enjoy!
DéHème

Offline

 

#328 2018-06-11 15:45:05

MarcRJacobs
Member
Bavaro, Dominican Republic
2013-05-27
36

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

Thanks teekay, this solved it. I guess somewhere along the there was an update that I missed.

~Marc


teekay wrote:

@Marc: should be /photos/ws.php now

Offline

 

#329 2018-06-11 15:49:09

MarcRJacobs
Member
Bavaro, Dominican Republic
2013-05-27
36

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

Hi;

I can't find where the menu (navbar) is located.

I'd like to add a top level link back to my WordPress site and can't find a way to do it withing the available tools in our plugins.

Is there an easy way to do this that I'm just missing?

Thanks,
Marc
https://www.marcrjacobs.com

Offline

 

#330 2018-06-26 09:20:19

kuzco
Member
2013-09-17
65

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

Hello,
using latest piwigo 2.9.3 with latest Darkroom 2.3.2 theme.
Unfortunately I have some problems to play my *.mp4 on my iPad 2017.

Videos (1920x1080) are playing, but I am not able to forward or backward the video. I can do forward and backward, when switching into full-screen mode.
On my iPhone 8 I do not have these issues.

Any hint is welcome.

Regards
kuzco

Offline

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

Board footer

Powered by FluxBB

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