/data/class/pages/LC_Page.php
関数 init に下記を追加。
$objCustomer = new SC_Customer(); if ( $objCustomer->isLoginSuccess() ) { $this->tpl_login = true; }
ポイントとか名前も取得する時はこんな感じで。
$objCustomer = new SC_Customer(); if ( $objCustomer->isLoginSuccess() ) { $this->tpl_login = true; $this->tpl_user_point = $objCustomer->getValue( 'point' ); $this->tpl_name1 = $objCustomer->getValue( 'name01' ); $this->tpl_name2 = $objCustomer->getValue( 'name02' ); }
こんな感じで条件分岐させる。
<!--{if $tpl_login}--> ログインしている時の処理 <!--{else}--> ログインしていない時の処理 <!--{/if}-->