Can I filter starting page content?

rhodes

Active member
When visitors view my media gallery at /community/media they can see photos and videos.

However, I would like to only show videos on the media gallery home page or better: only videos from a certain category. Is it possible to customize media for the meida gallery home page?
 
That's not really possible, unfortunately.

The only way is to edit the code so as to force the navigation tab to be a different URL.

e.g.

Edit file, library/XenGallery/Listener.php, Line 105. Change:
PHP:
$tabActionLink= XenForo_Link::buildPublicLink('full:xengallery');
to:
PHP:
$tabActionLink= XenForo_Link::buildPublicLink('full:xengallery/categories/1');

You would have to reapply that change after each upgrade.
 
Top Bottom