• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

Big picture in album listing not opening album

Status
Not open for further replies.

bastien

Chevereto Member
When I click on the big picture in the album listing, nothing happens but I expect opening the album (latest versions IE, FF and Chrome). When I click on one of the 4 smaller pics under the big one, the album is opening. This happens since I installed the latest version of Chevereto. But this happens also at the demo site.
 
Was about to open a thread for same.

Yes, big main image links but its not clickable.
 
I can too confirm this.

in /themes/Peafowl/tpl_list_item/album.php and /user/album.php

Add a <span> tag to the image-container like this

Code:
    <div class="list-item-image fixed-size">
        <a href="%ALBUM_URL%"> <span class="image-container"</span>
            %tpl_list_item/album_cover_empty%
            %tpl_list_item/album_cover_image%

This is a temporary fix until Rodolfo makes a better one.
 
Last edited:
I can too confirm this.

in /themes/Peafowl/tpl_list_item/album.php and /user/album.php

Add a <span> tag to the image-container like this

Code:
    <div class="list-item-image fixed-size">
        <a href="%ALBUM_URL%"> <span class="image-container"</span>
            %tpl_list_item/album_cover_empty%
            %tpl_list_item/album_cover_image%

This is a temporary fix until Rodolfo makes a better one.

Code:
    <div class="list-item-image fixed-size">
        <a href="%ALBUM_URL%"> <span class="image-container"></span>
            %tpl_list_item/album_cover_empty%
            %tpl_list_item/album_cover_image%

Your code is missing an ankle bracket. Fixed it for you.
Thanks for the temp fix.
 
Status
Not open for further replies.
Back
Top