Announcement

  •  » Themes
  •  » [Theme] stripped-galleria

#16 2012-01-30 20:57:17

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

I'm talking about stripped-galleria.
When an album is displayed in this theme, it's the thumbnail page.

Whatever the image you're seeing, it's the same page, the galleria script handles all the rest.

In fact it's nearly like in stripped-slide.


There are advanced options in galleria to make some kind of interaction between the script and something else.
I'm working on it, first to get the visit counter incremented.

It may be possible to add a download link which will be updated with the script interaction functions.
I'm not promising anything though, as I'm not sure to be able to do it...

Offline

 

#17 2012-01-31 22:14:13

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

otherwayup wrote:

stripped-galleria is a beautiful theme, I love it.

Is there a way of downloading the HD version of photos with this theme?

Would it be easy to add the DOWNLOAD link near the top (like stripped)?

I've managed to make this work.
This will be in the next release.

Offline

 

#18 2012-01-31 22:17:04

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

plg wrote:

The issue I have right now is the complete loss of browsing history : displaying a photo is not stored in the piwigo_history table. And I believe  that it does not increase the piwigo_images.hit. This is a rather serious problem if you care about statistics, and "most seen" and so on.

Lightbox had the same issue and it was solved by calling plugins/lightbox/save_history.php in AJAX. Would an equivalent be possible with Galleria?

This will also be in the next release.

I've taken the save_history.php (with only one change).
And I've modified the galleria launch script in order for it to be able to call save_history.

On my test site I can see the pages in the history... and the visit counter also increases.


This is indeed much better like this!

Offline

 

#19 2012-02-04 11:42:09

delakut
Guest

Re: [Theme] stripped-galleria

Hi Zaphod,

great theme:) I use it in piwigo.

I have a suggestion. If you choose 'display next image' under the Galleria options it is not possible to see the image as an HD image. Is it possible to place a small zoom botton for example under the 'i' tag? So you can easily look through the web images and if you want to see an image in HD quality you can click on the zoom botton.

And another question. The preview pictures under the web image are very small. Is it possible to choose an other size? I would like to have them slightly bigger.

 

#20 2012-02-10 23:40:07

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

delakut wrote:

I have a suggestion. If you choose 'display next image' under the Galleria options it is not possible to see the image as an HD image. Is it possible to place a small zoom botton for example under the 'i' tag? So you can easily look through the web images and if you want to see an image in HD quality you can click on the zoom botton.

It's probably possible but it would need customization on the galleria-script, something I'm not able to do...

delakut wrote:

And another question. The preview pictures under the web image are very small. Is it possible to choose an other size? I would like to have them slightly bigger.

Yes, this is possible via CSS.
For example, if you want 80px high thumbnails, you can put:

Code:

.galleria-thumbnails .galleria-image {height:80px!important;}
.galleria-thumbnails-container {height:90px!important;}
.galleria-stage {bottom: 100px!important;}

My advice is to keep +10px and +20px on the 2d & 3rd CSS rule.

Last edited by Zaphod (2012-02-11 15:55:17)

Offline

 

#21 2012-02-10 23:54:41

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

version 1.3.0 is out (with Piwigo history working + hd download link)

I totally rewrote the thumbnails template... if this version is not working on your site please tell me.

Offline

 

#22 2012-02-11 11:17:30

aniesu
Guest

Re: [Theme] stripped-galleria

Hi, it works well for me, I love this theme ! But there is just one thing I wish I could add, and don't manage to. I would like to have the name of the image always displayed (on top or bottom of the image), instead of having to click on the little "i". I don't know if it could be added as an option for example.
Great job anyway !

 

#23 2012-02-11 12:18:44

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

That's something I also want to do (as an option).
I'm not a great fan of the optional info (if I want to have a caption for an image, I want the visitors to read it... and I'm not sure many people will click on the little "i").

Last edited by Zaphod (2012-02-11 12:19:41)

Offline

 

#24 2012-02-11 15:45:21

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

I'll probably include this as an option someday, but you can test this solution for now.

Include this in the specific CSS for this theme:

Code:

.galleria-info { left:0; right:0; bottom: 50px; height: 50px; top: auto; width: 100%;}
.galleria-info-text { background: none; opacity:1; padding:5px 15px; height:40px; display:block!important;}
.galleria-info-title {display:none!important;}
.galleria-info-description { margin:auto; height:40px; line-height:20px;}
.galleria-info-link {display:none;}
.galleria-info-close {display:none;}

You can play with the parameters.
Here it displays only the description, on a maximum of 2 lines.

Offline

 

#25 2012-02-11 15:51:40

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

There is still some work to do on the above solution for it to work with IE...

Offline

 

#26 2012-02-11 16:09:43

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

It's not that simple...
I tried this:

Code:

.galleria-stage {bottom: 100px!important;}

.galleria-info {
  left:0!important;
  right:0!important;
  bottom: 50px!important;
  height: 50px!important;
  top: auto!important;
  width: 100%!important;
}
.galleria-info-text {
  background: none!important;
  opacity:1!important;
  filter:alpha(opacity=1)!important;
  padding:5px 15px!important;
  height:40px!important;
  display:block!important;
}
.galleria-info-title {display:none!important;}
.galleria-info-description {
  margin:auto!important;
  height:40px!important;
  line-height:20px!important;
}
.galleria-info-link {display:none!important;}
.galleria-info-close {display:none!important;}

But this doesn't work with IE8...

Last edited by Zaphod (2012-02-11 16:10:09)

Offline

 

#27 2012-02-11 16:15:56

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

It also seems that version 1.3.0 doesn't work at all with IE7...

So maybe I'll have to switch back to the old system... even if the new one is better in terms of performance and functionnality...

Offline

 

#28 2012-02-11 17:41:06

aniesu
Guest

Re: [Theme] stripped-galleria

Thank you Zaphod ! I changed some parameters to have the title and the description on top, and it works fine ! For IE, I don't have it so I can't test. It will just be a new occasion to tell my friends to use another browser to see my photos ;-)

 

#29 2012-02-11 23:19:20

Zaphod
Former Piwigo Team
2006-11-13
441

Re: [Theme] stripped-galleria

The bug with IE7 is corrected in 1.3.1 so the gallery now works again with IE7.
(another bug with IE9 has been corrected).

I found a way to have the thumbnail height given as an option.
I also found a way to make the caption below the image works with all IE.

This will be in version 1.4.0... but there is still work to do before I can release it.

Offline

 

#30 2012-02-22 23:07:46

Gdvpixel
Translation Team
2010-11-24
24

Re: [Theme] stripped-galleria

Hi, there is a way/mod in that theme to made the menu on the left always visible and user aren't able to hide it?
Thanks

Offline

 
  •  » Themes
  •  » [Theme] stripped-galleria

Board footer

Powered by FluxBB

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