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
great! very good news!
Offline
An important step in the right direction. Looking forward to see more ...
Offline
Very nice! One question though? Any idea why akbum view is filled with many repetitions of
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
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
Hello rvelices,
For photo sizes I have only square, thumbnail and medium checked.
php 5.3.3 short_open_tag = off
Offline
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
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...
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
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
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
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
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
@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
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
@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