MG 2.0 Category Wide Display Limitation

Larrabee

Member
I have a particular media category that I would like to hide the media's owner and added by information, including the users avatar. It would be great to see only the title and description.

How would I go about making this happen? Conditional based on category id??

Any feedback is helpful, thanks.
 
Add this to your extra.less and replace X with your category ID number:

[data-container-key=xfmgCategory-X] .contentRow-figure{
display: none;
}
[data-container-key=xfmgCategory-X] .p-description{
display: none;
}
 
Top Bottom