Najpierw musisz wprowadzić zmiany w ustawieniach.
Udostępniaj konta klientów między wieloma witrynami
Należy skonfigurować tę funkcję tutaj: System -> Configuration -> Customer Configuration -> Share Customer Accounts
.
Ustaw to ustawienie na Globalne, aby udostępniać każdego klienta wszystkim stronom internetowym .
Udostępnij logowanie między stronami internetowymi
Aby zachować sesję podczas przełączania między sklepami w różnych witrynach internetowych , włącz „Użyj SID w interfejsie użytkownika” w System> Konfiguracja> Ogólne> Internet :
Zmuś użytkowników do przekierowania na tę samą stronę internetową, którą zarejestrowali
Zdecydowanie klient loguje się do tej samej witryny, którą zarejestrował, gdy próbowaliśmy zalogować się z innej strony.
Posługiwać się customer_login
Zdefiniuj zdarzenie w pliku config.xml
<?xml version="1.0"?>
<config>
<modules>
<Stackexchange_Magento165528>
<version>1.0.0</version>
</Stackexchange_Magento165528>
</modules>
<global>
<models>
<magento165528>
<class>Stackexchange_Magento165528_Model</class>
</magento165528>
</models>
<events>
<customer_login> <!-- identifier of the event we want to catch -->
<observers>
<customer_login_handler> <!-- identifier of the event handler -->
<type>singleton</type> <!-- class method call type; valid are model, object and singleton -->
<class>magento165528/observer</class> <!-- observers class alias -->
<method>redirectoSourceDomain</method> <!-- observer's method to be called -->
<args></args> <!-- additional arguments passed to observer -->
</customer_login_handler>
</observers>
</customer_login>
</events>
</global>
</config>
Klasa obserwatora:
<?php
class Stackexchange_Magento165528_Model_Observer
{
public function redirectoSourceDomain(Varien_Event_Observer $observer)
{
$_customer = $observer->getEvent()->getCustomer();
/*
* Store of website from which website Customer have registered
*/
$_customer_resgister_store_id= $_customer->getStoreId();
if($_customer_resgister_store_id != Mage::app()->getStore()->getStoreId()){
$allStores=Mage::app()->getStores(); //get list of all stores,websites
foreach ($allStores as $_eachStoreId => $val){
$_storeId = Mage::app()->getStore($_eachStoreId)->getId();
//get url using store id
if($_customer_resgister_store_id == $_eachStoreId ){
$Websiteurl= Mage::app()->getStore($_storeId)->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_WEB);
$_redirecUrl = $Websiteurl."customer/account/login?SID=".Mage::getModel("core/session")->getEncryptedSessionId();
/* Force redirect to repective Website */
Mage::app()->getFrontController()->getResponse()
->setRedirect($_redirecUrl)
->sendResponse();
exit;
}
}
}
return;
}
}
UWAGA:
TESTUJĘ TEN KOD na STRONACH MOJEJ MAGENTO DEMO.
Ta strona internetowa działa z tej samej instancji Magento przy użyciu koncepcji strony internetowej.