XF 2.1 How to turn off album comments?

Any way to do this?

I have members commenting on albums instead of media, and also thinking they are adding media to the actual album by commenting. I would like to disable album comments but not media comments.
 
It can be done with CSS. Remove previous code and add this one:

Less:
[data-template="xfmg_album_view"] {
    .columnContainer {
        display: block;
    }

    .columnContainer-comments {
        display: none;
    }

    .columnContainer-sidebar {
        display: flex;

        .block {
            min-width: 250px;
            flex: 1 1 250px;
            margin: 0 5px 20px;

            &:first-child {
                margin: 0 0 20px;
            }
            &:last-child {
                margin: 0 0 20px;
            }

            .block-container {
                height: 100%;
            }
        }
    }
}
 
Last edited:
Well hot damn looks great thanks for your time!

Minor tweak: Any way to get the line of 3 widgets to be be 100% width to match above and still keep the space between them?
 
Never mind it's getting to messy! Your suggestion is great thanks!

Last question. :D

Is it possible to hide

Comment count 0
Rating
0.00 star(s)
0 ratings

From the Information widget?

And possibly the comment count from the hover of the album thumb?

Or would I strip those from a template? Cheers!

EDIT: Realized the Leave a rating button is still there and can comment uggh. I'm going to keep as is.
 
Last edited:
Top Bottom