ポータルログインページにSNS内でホームへ表示されている「一言メッセージ」を右サイドブロックの続きに「みんなの一言」のタイトルで同様の内容を表示させる
/webapp_ext/modules/pc/templates/login/にo_login_right_one_word.tplを作成
みんなの一言
- ({$item.r_datetime|t_date})…「({$item.comment|t_body:’title’})」
({foreach from=$other_word item=item})
({/foreach})
/webapp_ext/modules/pc/templates/のo_login.tplのブロックに47行目あたりに下記を追加
({ext_include file=”login/o_login_right_one_word.tpl”})
o_login.tplの現状
({ext_include file=”login/o_login_right_banner.tpl”})
({ext_include file=”login/o_login_right_diary_list.tpl”})
({ext_include file=”login/o_login_right_etc_list.tpl”})
({ext_include file=”login/o_login_right_etc_table.tpl”})
({ext_include file=”login/o_login_right_news_list.tpl”})
o_login.tplを下記の様に変更する
o_login.tplの変更
“]
({ext_include file=”login/o_login_right_banner.tpl”})
({ext_include file=”login/o_login_right_diary_list.tpl”})
({ext_include file=”login/o_login_right_etc_list.tpl”})
({ext_include file=”login/o_login_right_etc_table.tpl”})
({ext_include file=”login/o_login_right_news_list.tpl”})
({ext_include file=”login/o_login_right_one_word.tpl”})
ポータルログイン画面の「みんなの一言」の表示件数変更方法
/webapp_ext/modules/pc/page/のo_login.phpのブロックに90行目あたりに追加
現状
//メンバーの一言を取得する
$oneword = new OneWord();
$other_word = $oneword->getList();
10を追記することで表示件数を10件に変更できます。
変更
“]
//メンバーの一言を取得する
$oneword = new OneWord();
$other_word = $oneword->getList(10);