ZenphotoCMS Forum
New Theme : zpArdoise - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: Themes (https://forum.zenphoto.org/forum-5.html)
+--- Thread: New Theme : zpArdoise (/thread-7737.html)

Pages: 1 2 3 4 5 6 7 8


New Theme : zpArdoise - acrylian - 13-10-2017

I fear you are out of luck unless you wish to edit the galleriffic script. But I am not familiar with it.

I would actually not recommend to use this script nowadays as it seems to have been abanoned by its creator about 6 years ago. It is likely to break with newer jquery sooner or later anyway.




New Theme : zpArdoise - Eddie - 13-10-2017

ah, Thanks!




New Theme : zpArdoise - vincent3569 - 13-10-2017

I see 3 ways:
-first way, basically, uncheck galleriffic option, so you never use the script (but you have the genral "look and feel" of the theme)




New Theme : zpArdoise - vincent3569 - 13-10-2017

-second way, duplicate album.php (ie album.php and album-standard.php) and manage them with multiple_layouts plugin.
the first album stay the the same as actualy, and in the second you have to simply disallow gallerrific option (simply replace all getOption('use_galleriffic') by false or rewrite the file to suppress uneeded code.
of course I assume that all your pdf files are in specific albums (with images or not, but in all the case you will have a standard display for all items of your albums).

you have to enable multiple_layouts plugin in admin>plugins.
then choose this album-standard layout in all albums you need for in admin>albums>[album name]>select album layout




New Theme : zpArdoise - acrylian - 13-10-2017

Yeah, multiple_layouts would a good solution if these pdfs can be separated to their own albums.




New Theme : zpArdoise - vincent3569 - 13-10-2017

-third way, keep your pdf files in private albums hand show them within news or pages.




New Theme : zpArdoise - Eddie - 13-10-2017

Multiple lay-outs worked!!! You are a genius!! Thank you so much!




New Theme : zpArdoise - Eddie - 13-10-2017

Just one more question, it does not show the title and description in my new album-standard.php. Is there anything I need to add?




New Theme : zpArdoise - Eddie - 13-10-2017

I am soo close :)




New Theme : zpArdoise - Eddie - 13-10-2017

Please would you be so kind to tell me how you can scale the thumbs back to 100% in the gallery, I cannot find this anywhere in the css or in the forum.




New Theme : zpArdoise - Eddie - 13-10-2017

I found the thumb scaling, still struggling to get the file title and description in the new standard-album.php page.




New Theme : zpArdoise - acrylian - 13-10-2017

I recommend to read the theming tutorial for the theme basics in case you haven't yet.




New Theme : zpArdoise - Eddie - 13-10-2017

Sorry, I am not a coding expert, I am so close to what I need, you guys have been very helpful! I think title and description don't work at the moment due to fact that they were part of the galleriffic script. I have not done any changes only turning the script off. Vincent, any ideas?




New Theme : zpArdoise - Eddie - 13-10-2017

Thanks for your help guys, I sorted it out. You made my day with the multiple layouts Vincent!




New Theme : zpArdoise - Eddie - 19-11-2017

Hi guys, Struggling with a small item...Can anyone show me how to untoggle the comments in ZPArdoise? The toggle settings in the plugin options do not change the behavior. I'd like to make the comments visible all the time.




New Theme : zpArdoise - vincent3569 - 20-11-2017

hi
depending of style used (dark or light), modify zpardoise.js or zpardoise_light.js and comment (or remove) this code:

    //For Comment slide : force to open #comment-wrap if there is an errorbox or notebox
    if (($('#comment-wrap .errorbox').length) || ($('#comment-wrap .notebox').length)) {
        $('#comment-wrap').css('display', 'block');
        $('#comment-wrap').css('opacity', '1');
    } else {
        $('#comment-wrap').css('display', 'none');
        $('#comment-wrap').css('opacity', '0');
    };
    $(".fadetoggler").click(function(){
        $(this).next("#comment-wrap").fadeSliderToggle();*/
    });



New Theme : zpArdoise - Eddie - 20-11-2017

Worked like a charm! Many Thanks!




New Theme : zpArdoise - undagiga - 13-12-2017

I am using this theme with the Gallerific option turned on. Before I start digging in the code, is it possible to display search results using Gallerific? I have a lot of tags and use them as virtual albums, but far to many to create defined albums for them all. I have created a theme page that lists them all alphabetically and which has links of this form for each one:
http://www.mysite.com/page/search/tags/"tag name"/

The resulting page(s) of thumbs seem to behave like albums, in that Colorbox operates on the thumbs, since I have that option enabled for albums, but I don't get Gallerific. I'd like to enable it for such search results. Thanks.




New Theme : zpArdoise - vincent3569 - 14-12-2017

hi
zpArdoise doesn't use Gallerific in search page natively.
The main reason is because of this troubleshooting you can see in readme:

If you use Galleriffic script, you should not have any albums that mixes sub-albums and pictures (in this case, there is no navigation bars, so all sub-albums may be not displayed on album.php)




New Theme : zpArdoise - vincent3569 - 14-12-2017

but, of course you can change the code and be aware of using your tags only on pictures and not on albums.

you have 3 files to update.