Skip to content

rateon/twhk-ec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

eccube基本的なメモ

コメントアウトで規約スルー
data/class/pages/entry/LC_Page_Entry.php
// PC時は規約ページからの遷移でなければエラー画面へ遷移する
//if ($this->lfCheckReferer() === false) {
// SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, '', true);
//}
//SC_Helper_Customer_Ex::sfCustomerEntryParam($objFormParam);
//$objFormParam->setParam($_POST);

SUBMIT 画像処理解除
html/js/eccube.js

form Entry入力一覧
data/Smarty/templates/default/frontparts/form_personal_input.tpl
data/Smarty/templates/default/frontparts/form_personal_confirm.tpl

HEAD設定
data/Smarty/templates/default/site_frame.tpl

郵便番号DB登録 Zip アーカイブDL http://svn.ec-cube.net/open_trac/changeset/21892 ファイルを配置 data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php

手動登録

会員フォーム必須項目削除

/data/Smarty/templates/default/frontparts/form_personal_input.tpl /data/class/helper/SC_Helper_Customer.php

エラーメッセージ data/class/SC_CheckError.php

ログイン 分岐処理
/data/class/pages/LC_Page.php

// ログイン処理 情報取得 関数initに追加  
$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}-->