ZenphotoCMS Forum
Why all the hatred for the Libratus theme? - 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: Why all the hatred for the Libratus theme? (/thread-12232.html)

Pages: 1 2


Why all the hatred for the Libratus theme? - fretzl - 2015-12-03

You're right! Thanks.
Completely forgot about that possibility.




Why all the hatred for the Libratus theme? - Ralf - 2017-07-24

Hi,
old thread I know.
Just wondering what happened to/with gjr.

Noticed that his website is gone.

Cheers
Ralf




Why all the hatred for the Libratus theme? - acrylian - 2017-07-24

Sadly we have no idea either as we lost contact some time ago as well. In any case he always had a full time day job that was not web related anyway.




Why all the hatred for the Libratus theme? - leiferikson - 2019-04-01

If have some Problems with the folder title-images. Is there still someone here?




Why all the hatred for the Libratus theme? - acrylian - 2019-04-01

The theme author is not but we are still here obviously. We don't specifially support the theme but we have forked it so any issues can possibly corrected: https://github.com/zenphoto/libratus




Why all the hatred for the Libratus theme? - leiferikson - 2019-04-01

The folder of the Titleimage are listet in the menustructure. If I unpublish the folder "titleimages" i have no images on the titlesites, but the album is not listet in the menulist. How can I make the folder titleimage unvisible in the menu-structure?




Why all the hatred for the Libratus theme? - acrylian - 2019-04-01

I fear I cannot answer this question right away as I am not overly familar with the theme. I will have to check later when I have the time to do so.




Why all the hatred for the Libratus theme? - fretzl - 2019-04-02

If I understand correctly you have an album specifically for the homepage slideshow images. And you do not want that album to appear in the menu?
By far the easiest is to hide the menu-item with CSS.
In the css/style.css file add the following line:
#nav li a[title="titleimages"] {display: none;}




Why all the hatred for the Libratus theme? - leiferikson - 2019-04-02

In my zenphoto (Version 1.4.9; PHP-Version: 5.4.45-0+deb7u14; www.torstenbahr.com)
I use the libratustheme and it is quite nice. But the theme has an folder for the slideshow what is shown in the menu.
But I don´t know, how I could add " #nav li a[title="titleimages"] {display: none;} " to this menuitem.
I tried to use "menumanager" but the menus generatet are not in the style of the libratustheme.




Why all the hatred for the Libratus theme? - acrylian - 2019-04-02

I would this sounds like a theme bug. That slideshow should be able to use an unpublished album that is not visible (to non loggedin visitors). Don't know how it does this right now but that is certainly possible.

I tried to use "menumanager" but the menus generatet are not in the style of the libratustheme.

That's unfortunate that the theme author didn't setup it for this…




Why all the hatred for the Libratus theme? - leiferikson - 2019-04-02

hm, thats dump. I think I will have to take a close look to menumanager again... hamburger menu in style of libratus would be perfect.




Why all the hatred for the Libratus theme? - acrylian - 2019-04-02

hamburger menu in style of libratus would be perfect.

The menu_manager plugin is layout agnostic and just creates a list. The layout is entirely up to the theme's CSS.

I have taken a quick look at the slideshow album usage. It uses the image_album_statistics plugin for getting the images which only works with published items (e.g. those the visitor is allowed to see).

It can be changed to use an album directly but sadly the theme uses the specific sorting options of that plugin which then would not work anymore. Or the plugin needs an addition to bypass visibility/access checks.




Why all the hatred for the Libratus theme? - fretzl - 2019-04-02

It's easier than I thought.
In the theme's options there is a Custom CSS field.
You can copy/paste the following line in that field.
#nav li a[title='titleimages'] {display: none;}
This assumes that the title of your folder (album) is titleimages.




Why all the hatred for the Libratus theme? - acrylian - 2019-04-02

That would of course work but is more a workaround actually…




Why all the hatred for the Libratus theme? - acrylian - 2019-04-02

I tried quickly to add menu_manager support but this really requires some CSS reworking to work that I sadly don't have the time to investigate right now…