MG 2.2 Filenames

motowebmaster

Well-known member
Is there a way for new uploads to not display their filename, or a way to disable it? In other words, force the user to enter a title?
 
Solution
Untested but edit the xfmg_media_add_macros template.

Change this:
HTML:
<xf:textboxrow name="{$namePrefix}[title]" value="{{ mustache('title') }}"

To this:
HTML:
<xf:textboxrow name="{$namePrefix}[title]" value=""
Untested but edit the xfmg_media_add_macros template.

Change this:
HTML:
<xf:textboxrow name="{$namePrefix}[title]" value="{{ mustache('title') }}"

To this:
HTML:
<xf:textboxrow name="{$namePrefix}[title]" value=""
 
Solution
Back
Top Bottom