MG 2.2 How to hide related media?

drastic

Well-known member
Hi,

I'd like to remove the related media from under the media view page, as it just shows tiny images on mobile and isn't a very good user experience.

If we could place the related media under the media description, with a thumbnail and title like how blogs do related content, that would be a good user experience for readers.

For now, can we have an option to disable related media (if there isn't already)?

Or is there a spot in template I can comment out to achieve the same goal?

Thanks!

Screenshot_3.webp
 
Anyone figure out a way to hide/remove these related media?

They're just kinda taking up space but don't really offer a good user experience :/

Thanks.
 
This added to the extra.less template should do it:

Less:
[data-template = "xfmg_media_view"]
{
    .block-outer-middle
    {
        display: none;
    }
}
 
Top Bottom