묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
sweetmobile 스킨 비밀글 자동설정
2016.02.18 12:00
<li class="smbAllow" cond="is_array($status_list)">
<span>{$lang->status}</span>
<ul class="smbRadio">
<!--@foreach($status_list AS $key=>$value)-->
<input type="radio" name="status" value="{$key}" id="id{$key}" checked|cond="$oDocument->get('status') == $key" />
<li>
<label for="id{$key}">{$value}</label>
</li>
<!--@end-->
</ul>
</li>
비회원 글 작성시 기본값으로 비밀글로 작성되게 하려고 하는데
위의 소스 어디를 수정하면 될까요?
조언부탁드립니다.^^;
checked|cond="$oDocument->get('status') == $key" 부분을
checked|cond="(!$oDocument->get('status') && $key=='SECRET') || ($oDocument->get('status') == $key)" 로 해보세요