M@rc Well-known member Mar 29, 2018 #1 The most I've found so far is : Code: {$input|raw} Is it possible to edit this area I highlighted in the screenshot below : If it's a file edit of core files, which file should I be looking at? Thanks!
The most I've found so far is : Code: {$input|raw} Is it possible to edit this area I highlighted in the screenshot below : If it's a file edit of core files, which file should I be looking at? Thanks!
M@rc Well-known member Mar 29, 2018 #3 Chris D said: Edit it how exactly? Click to expand... Changing the default value or editing out an option completely. Upvote 0 Downvote
Chris D said: Edit it how exactly? Click to expand... Changing the default value or editing out an option completely.
BobHarbison Active member Mar 29, 2018 #4 I'm also interested in that. I have absolutely no reason to allow members to upload a gallery that only they can see! Not in competition with Dropbox. Upvote 0 Downvote
I'm also interested in that. I have absolutely no reason to allow members to upload a gallery that only they can see! Not in competition with Dropbox.
M@rc Well-known member Mar 30, 2018 #5 @Chris D Any word about this? Right now the default value is set to "album owner only" and people are saving it with that setting by mistake when they want others to view their content. Upvote 0 Downvote
@Chris D Any word about this? Right now the default value is set to "album owner only" and people are saving it with that setting by mistake when they want others to view their content.
Chris D XenForo developer Staff member Mar 30, 2018 #6 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> Upvote 0 Downvote
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>
Skylined Well-known member Jul 21, 2018 #7 Chris D said: 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> Click to expand... @Chris D will this be implemented in future versions? (I know I can edit it) Upvote 0 Downvote
Chris D said: 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> Click to expand... @Chris D will this be implemented in future versions? (I know I can edit it)