我想从magento的自定义登录页面重定向主URL

时间:2013-08-27 19:29:44

标签: magento-1.7

我希望这对专家来说是一个非常简单的问题,但对我来说不是。

我只想要,当我的网站网址被打开时,它会自动重定向到客户登录页面 但条件是 当客户被记录并且他点击主页链接然后显示客户仪表板或客户信息。

有人可以帮助我,请给我任何解决方案,我正在使用magento 1.7.X

先谢谢

1 个答案:

答案 0 :(得分:-1)

我的问题得到了解决我创建了cms页面并输入此代码

{{block type='core/template' template='page/html/custom_login.phtml'}}

然后我制作了页面和代码 -

`<?php //Check If Customer Is Logged In Or Not.
 if (!Mage::getSingleton("customer/session")->isLoggedIn())
      {
        $session = Mage::getSingleton("customer/session");
        // Store The Current Page Url Where User will be redirected once loggedin
        $session->setBeforeAuthUrl(Mage::helper("core/url")->getCurrentUrl());
        $customerLoginURL = $this->getBaseUrl() . "customer/account/login";
         Mage::app()->getFrontController()->getResponse()>setRedirect($customerLoginURL)-       >sendResponse();
        }else{
        //redirect to login
        $customerLoginURL = $this->getBaseUrl() . "customer/account/login";
        Mage::app()->getFrontController()->getResponse()->setRedirect($customerLoginURL)->sendResponse();
        }
        ?>`

如果有人愿意为此提供帮助,可以请我就此发表评论