Announcement

  •  » Themes
  •  » [modus] Theme version 2.6.a

#1 2014-02-04 16:05:53

rvelices
Former Piwigo Team
2005-12-29
1960

[modus] Theme version 2.6.a

A new theme modus (live on my site http://www.modusoptimus.com/pwg/ ).
This is a beta version.

Responsive, horizontal menu (vertical on mobiles). Includes functionalities of plugins GThumb, automatic_size, auto_size, but retina screen aware (these plugins should be deactivated on this theme)

[extension by rvelices] modus

Offline

 

#2 2014-02-04 21:11:36

flop25
Piwigo Team
2006-07-06
7037

Re: [modus] Theme version 2.6.a

great! very good news!


To get a better help : Politeness like Hello-A link-Your past actions precisely described
Check my extensions : more than 30 available
who I am and what I do : http://fr.gravatar.com/flop25
My gallery : an illustration of how to integrate Piwigo in your website

Offline

 

#3 2014-02-04 22:30:50

photo_friend
Member
Berlin
1970-01-01
202

Re: [modus] Theme version 2.6.a

An important step in the right direction. Looking forward to see more ...

Offline

 

#4 2014-02-05 05:11:18

JJF
Member
2011-10-06
118

Re: [modus] Theme version 2.6.a

Very nice! One question though?  Any idea why akbum view is filled with many repetitions of

Code:

    px;height:px>> height= alt="" data-pop='{"w":,"h":,"url":"get_url()?>"}'>

instead of the actual thumbnails?  See http://fristersoft.dyndns.org/index.php?/category/75

Offline

 

#5 2014-02-05 14:30:28

rvelices
Former Piwigo Team
2005-12-29
1960

Re: [modus] Theme version 2.6.a

JJF wrote:

Any idea why akbum view is filled with many repetitions of

Code:

    px;height:px>> height= alt="" data-pop='{"w":,"h":,"url":"get_url()?>"}'>

instead of the actual thumbnails?  See http://fristersoft.dyndns.org/index.php?/category/75

That's odd.
In admin home page, click show info and search for "short_open_tag". What do you see On or Off ?
Can you tell me what are the parameters of your thumb and medium sizes ?

Offline

 

#6 2014-02-06 19:29:28

JJF
Member
2011-10-06
118

Re: [modus] Theme version 2.6.a

Hello rvelices,

For photo sizes I have only square, thumbnail and medium checked.

php 5.3.3 short_open_tag = off

Offline

 

#7 2014-02-06 22:33:19

rvelices
Former Piwigo Team
2005-12-29
1960

Re: [modus] Theme version 2.6.a

JJF wrote:

php 5.3.3 short_open_tag = off

I think that's it - I use the short_open_tag ...
(php default config is On and starting with php 5.4 it will not be required anymore)

Offline

 

#8 2014-02-09 12:25:07

Forester
Guest

Re: [modus] Theme version 2.6.a

Hello,

great theme! Is there an easy option to turn off the hover zoom?

In combination with the Lightbox plugin it just opens the file in a new tab...

 

#9 2014-02-11 00:58:02

JJF
Member
2011-10-06
118

Re: [modus] Theme version 2.6.a

rvelices wrote:

I think that's it - I use the short_open_tag ...
(php default config is On and starting with php 5.4 it will not be required anymore)

Thank you very much. That was it!

Offline

 

#10 2014-02-11 08:46:49

rvelices
Former Piwigo Team
2005-12-29
1960

Re: [modus] Theme version 2.6.a

Forester wrote:

great theme! Is there an easy option to turn off the hover zoom?

In combination with the Lightbox plugin it just opens the file in a new tab...

I will add this option to my to do list (after fixing some incompatibility issues with other plugins)

Offline

 

#11 2014-02-12 03:14:23

caroldaley
Member
2014-02-12
4

Re: [modus] Theme version 2.6.a

I just started using Piwigo and I must say It's a great gallery script. I am also really excited by the modus theme. I just have one question ... Is there a way to change the symbol for the new photos to an image?

Offline

 

#12 2014-02-12 08:52:41

JanisV
Member
2013-09-25
85

Re: [modus] Theme version 2.6.a

Hi,

Great theme! Thank you for sharing!

I see that new version 2.6.b available, but it not present in auto-update list on my Piwigo site... Something missed in header?

Offline

 

#13 2014-03-23 10:26:11

Jason
Guest

Re: [modus] Theme version 2.6.a

rvelices:  THANK YOU for the awesome modus theme!  So far, I am amazed at how nice it is!

I have a few questions please...

1. At your site: http://www.modusoptimus.com/pwg/ you have changed "Home" to "Radu's photo gallery" how did you do that?

2. http://www.modusoptimus.com/pwg/tags.php  I have Colored Tags installed, but how did you sort your tags by color?

3. When looking through your photos, your site automatically loads more photos when you get to the bottom of the screen... How did you do that?  http://www.modusoptimus.com/pwg/index/flat

4. Can you please give me a list of the plugins you are using?

I REALLY APPRECIATE YOUR TIME AND HELP! 

Thanks,

Jason

 

#14 2014-03-24 09:59:45

rvelices
Former Piwigo Team
2005-12-29
1960

Re: [modus] Theme version 2.6.a

@Jason:

1/ It's done in a personal plugin. If you feel like writing your own (can do it with LocalFileEditor), it should look like

Code:

function change_title_section_init()
{
  global $page, $conf;

  if (@$page['is_homepage'])
  {
    $page['section_title'] = '<a href="'.duplicate_index_url(array('start'=>0)).'">'.$conf['gallery_title'].'</a>';
  }
}

add_event_handler('loc_end_section_init', 'change_title_section_init' );

2/ This is also done in a plugin I wrote and which is not published. The reason is that is pretty complicated and I didn't write any admin page for it (I inputted data directly in the database)

3/ It's plugin RV Thumbnail Scroller here: http://piwigo.org/ext/extension_view.php?eid=493

4/ RV Akismet, RV Autocomplete, RV Maps&Earth, RV Menu Tree, RV Sitemap, RV Thumb Scroller + my personal one ...

Offline

 

#15 2014-03-24 19:20:45

Jason
Guest

Re: [modus] Theme version 2.6.a

@rvelices:  Thanks for responding so fast!

I implemented your plugins and also the personal plugin code your wrote... it's all working GREAT!  :)

For #2 - the custom tags private plugin you have, I tried installing both the "tags" and the "Colored Tags" plugins.  Which creates a simple tags table in the piwigo database.  This mysql query will list all the tags ordered by color:
SELECT * FROM `piwigo_tags` ORDER BY `id_typetags` ASC,`name` ASC

I'm a hobby php programmer... and will see if I can figure out how to integrate that query into tags.php.  And then it will be same as your private/custom plugin   :)

Thanks again for your help!

Jason

 
  •  » Themes
  •  » [modus] Theme version 2.6.a

Board footer

Powered by FluxBB

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