テンプレートファイルの記述を変更いただくことで、デフォルトでチェックを入れることが可能でございます。
※テンプレートファイルを編集する際は、必ずバックアップを取ってください。
※編集後は、貴社作業による動作確認をお願いします。
記述例
■対象ファイル
・pc/templates/ユーザーテンプレート/shopping/lp_ajax.tpl
・smp/templates/ユーザーテンプレート/shopping/lp_ajax.tpl
■記述内容
▼初回即時機能が有効な場合の初回最短
<input type="checkbox" name="first_quick_flg" id="first_quick_flg" value="1" <!--{if $arrForm.first_quick_flg == 1}-->checked="checked"<!--{/if}--> />
↓以下に変更
<input type="checkbox" name="first_quick_flg" id="first_quick_flg" value="1" checked="checked" />
▼初回即時機能が無効な場合の初回最短
<input type="checkbox" name="quick_flg" id="quick_flg" value="1" <!--{if $arrForm.quick_flg == 1}-->checked="checked"<!--{/if}--> />
↓以下に変更
<input type="checkbox" name="quick_flg" id="quick_flg" value="1" checked="checked" />