MG 2.0 Is it possible to edit this area?

M@rc

Well-known member
The most I've found so far is :
Code:
{$input|raw}
Is it possible to edit this area I highlighted in the screenshot below :

edit.webp

If it's a file edit of core files, which file should I be looking at?

Thanks!
 
In the template xfmg_album_edit find:
HTML:
        <xf:radio name="{$viewName}" value="{$album.view_privacy}">
            <xf:foreach loop="$values" value="$value">
                <xf:if is="$value != 'shared'">
                    <xf:option value="{$value}">{$album.getPrivacyPhrase($value)}</xf:option>

And replace with:
HTML:
        <xf:radio name="{$viewName}" value="{$album.view_privacy}">
            <xf:foreach loop="$values" value="$value">
                <xf:if is="$value != 'shared'">
                    <xf:option value="{$value}" selected="$value == 'public'">{$album.getPrivacyPhrase($value)}</xf:option>
 
In the template xfmg_album_edit find:
HTML:
        <xf:radio name="{$viewName}" value="{$album.view_privacy}">
            <xf:foreach loop="$values" value="$value">
                <xf:if is="$value != 'shared'">
                    <xf:option value="{$value}">{$album.getPrivacyPhrase($value)}</xf:option>

And replace with:
HTML:
        <xf:radio name="{$viewName}" value="{$album.view_privacy}">
            <xf:foreach loop="$values" value="$value">
                <xf:if is="$value != 'shared'">
                    <xf:option value="{$value}" selected="$value == 'public'">{$album.getPrivacyPhrase($value)}</xf:option>
@Chris D will this be implemented in future versions? (I know I can edit it)
 
Top Bottom