Announcement

  •  » Extensions
  •  » Fotorama: cool, even greater, almost there :-)

#1 2014-09-27 22:20:25

mmoy
Member
France
2014-08-18
85

Fotorama: cool, even greater, almost there :-)

Hello/Hi/Greetings,

I like the Fotorama plugin very much. I'm glad I have a way to use all my (visitor's) screen pixels to display images.

I see that the latest version has a "Replace picture page" option that makes it even cooler. Nothing to disturb the visitors: pictures, and only pictures :-).

The only issue with "Replace picture page" is that, if I understand correctly, it completely disables the access to the "normal" picture page, so it removes a lot of potentially interesting features of Piwigo (no more access to EXIF info, comments, buttons like "add to collection", "add to favorites", rating, ...). I'd love to have a "more info" link to access the normal image page (with EXIF info, buttons, comments, ...), like the smartpocket theme does, or to be able to scroll and get these information below on the page (I can see that scrolling with the mousewheel already "works" in the sense that I get a "stop slideshow" button above and a footer below, but nothing really useful).

Is there anything like this on the roadmap? Or is there any trick to get this behavior now?

Anyway, thanks for this great plugin!

Piwigo version: 2.7
Piwigo URL: http://piwigo.us/beta/mmoy

Offline

 

#2 2014-09-28 16:32:07

JanisV
Member
2013-09-25
85

Re: Fotorama: cool, even greater, almost there :-)

Thank you for your reply!

Yes, link to normal picture page will be added in one of the next release.
About "scroll and get these information below on the page" - I want implement it with stripped-responsive theme.

Offline

 

#3 2014-09-28 22:41:30

photo_friend
Member
Berlin
1970-01-01
202

Re: Fotorama: cool, even greater, almost there :-)

JanisV wrote:

Thank you for your reply!

Yes, link to normal picture page will be added in one of the next release.
About "scroll and get these information below on the page" - I want implement it with stripped-responsive theme.

Hi JanisV,

Sounds great - I'm really looking forward to see the next version ...

Offline

 

#4 2014-09-29 17:37:46

mmoy
Member
France
2014-08-18
85

Re: Fotorama: cool, even greater, almost there :-)

JanisV wrote:

Thank you for your reply!

Yes, link to normal picture page will be added in one of the next release.
About "scroll and get these information below on the page" - I want implement it with stripped-responsive theme.

OMG, this is going to be awesome! Can't wait ;-).

Offline

 

#5 2014-10-08 16:47:05

JanisV
Member
2013-09-25
85

Re: Fotorama: cool, even greater, almost there :-)

First implementation of Info button already in 2.7.o

Offline

 

#6 2014-10-08 18:42:16

mmoy
Member
France
2014-08-18
85

Re: Fotorama: cool, even greater, almost there :-)

JanisV wrote:

First implementation of Info button already in 2.7.o

This is really cool. Thanks a lot. Unfortunately, I'm hit by [Bugtracker] ticket 3147 .
The problem comes from

.wide #theImage {
    display: inline;
    float: left;
    width: 76.1%; /*min default picture derivative width*/
}

in Modus's CSS, which forces the width of <div id="theImage"> to 76.1%. Changing this to 100% fixes the issue, but breaks the layout for the non-fotorama picture page.

Any idea on how to fix this?

Last edited by mmoy (2014-10-08 18:42:40)

Offline

 

#7 2014-10-08 19:29:41

mmoy
Member
France
2014-08-18
85

Re: Fotorama: cool, even greater, almost there :-)

A possible fix is this:

Code:

--- a/template/fotorama-content.tpl
+++ b/template/fotorama-content.tpl
@@ -109,6 +109,7 @@
     jQuery('.fotorama').data('fotorama').requestFullScreen();
     {else}
       {if $Fotorama.resize}
+      jQuery('#theImage').width('100%');
       jQuery('.fotorama').data('fotorama').resize({
         height: jQuery(window).height()
       });

in Fotorama itself, to make sure previous configuration will not break the slideshow. Not sure it's the best possible fix, but it's in Javascript, and procted by {if $Fotorama.resize}, so it should trigger only as needed.

Offline

 

#8 2014-10-08 21:44:57

mmoy
Member
France
2014-08-18
85

Re: Fotorama: cool, even greater, almost there :-)

BTW, there's a typo in the french translation:

Code:

--- a/language/fr_FR/plugin.lang.php
+++ b/language/fr_FR/plugin.lang.php
@@ -27,7 +27,7 @@ $lang['Navigation style'] = 'Style de la navigation';
 $lang['Allows fullscreen'] = 'Autoriser l\'affichage plein écran';
 $lang['Enables autoplay'] = 'Démarrage automatique de la lecture';
 $lang['Enables loop'] = 'Lecture en boucle';
-$lang['Stops slideshow at any user action with the fotorama'] = 'Arrêter le diaporamam sur n\'importe quelle action';
+$lang['Stops slideshow at any user action with the fotorama'] = 'Arrêter le diaporama sur n\'importe quelle action';
 $lang['What transition to use'] = 'Transition à utiliser';
 $lang['Fullscreen navigation style'] = 'Style de la navigation plein écran';
 $lang['Only fullscreen mode'] = 'Mode plein écran seulement';

(diaporamam -> diaporama)

Offline

 

#9 2014-10-08 22:55:00

ddtddt
Piwigo Team
Quetigny - France
2007-07-27
7201

Re: Fotorama: cool, even greater, almost there :-)

mmoy wrote:

BTW, there's a typo in the french translation:

Code:

--- a/language/fr_FR/plugin.lang.php
+++ b/language/fr_FR/plugin.lang.php
@@ -27,7 +27,7 @@ $lang['Navigation style'] = 'Style de la navigation';
 $lang['Allows fullscreen'] = 'Autoriser l\'affichage plein écran';
 $lang['Enables autoplay'] = 'Démarrage automatique de la lecture';
 $lang['Enables loop'] = 'Lecture en boucle';
-$lang['Stops slideshow at any user action with the fotorama'] = 'Arrêter le diaporamam sur n\'importe quelle action';
+$lang['Stops slideshow at any user action with the fotorama'] = 'Arrêter le diaporama sur n\'importe quelle action';
 $lang['What transition to use'] = 'Transition à utiliser';
 $lang['Fullscreen navigation style'] = 'Style de la navigation plein écran';
 $lang['Only fullscreen mode'] = 'Mode plein écran seulement';

(diaporamam -> diaporama)

I open right for you on translate tool ;-)  ->  http://piwigo.org/translate/


You love Piwigo so don't hesitate to participate, learn more on the "Contribute to Piwigo" page. If you don't have much time for contribution, you can also help the project with a donation.

Offline

 
  •  » Extensions
  •  » Fotorama: cool, even greater, almost there :-)

Board footer

Powered by FluxBB

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