customer_registration_success のオブザーバーを作成しましたが、ユーザーが登録を選択したときに、1 ページのチェックアウトでトリガーされるイベントをリッスンする必要があります。http://cl.ly/image/2F3L0s1E3g1e
これがどのようなイベントであるかについて何か考えはありますか?
customer_registration_success のオブザーバーを作成しましたが、ユーザーが登録を選択したときに、1 ページのチェックアウトでトリガーされるイベントをリッスンする必要があります。http://cl.ly/image/2F3L0s1E3g1e
これがどのようなイベントであるかについて何か考えはありますか?
以下のロジックを使用して独自の「カスタム イベント」を作成し、success.phtml のチェックアウトまたは組み込みに使用するメソッドを確認できます。sales_order_place_after
$quoteId = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId())->getQuoteId();
$quote = Mage::getModel('sales/quote')->load($quoteId);
$method = $quote->getCheckoutMethod(true);
if ($method == 'register'){
//the customer registered...do your stuff
}
ソース: http://www.magentocommerce.com/boards/viewthread/273690/#t375160