SUPEE 6788 and Password Reset (blank page)

后端 未结 4 1961
离开以前
离开以前 2020-12-14 21:23

I\'ve installed SUPEE 6788. Then noticed that password reset page is blank when you click on the reset link in the email. Any ideas how to make the reset page to show up ? P

相关标签:
4条回答
  • 2020-12-14 21:32

    You have to edit customer.xml file and replace

    customer_account_resetpassword translate="label" to customer_account_changeforgotten translate="label"

    and block type="customer/account_resetpassword" to block type="customer/account_changeforgotten"

    File location is app/design/frontend/theme/default/layout/customer.xml, the theme name might be different for you.

    0 讨论(0)
  • 2020-12-14 21:45

    Update your app/design/frontend/%custom%/%theme%/layout/customer.xml layout file with these changes:

    source: gist.github.com/Nolwennig

    0 讨论(0)
  • 2020-12-14 21:49

    In case after the SUPEE-6788 patch you experience «Forgot password issue», in other words the page is blank.

    You have to edit customer.xml file and replace customer layout customer_account_resetpassword with customer_account_changeforgotten.

    File location: app/design/frontend/theme/default/layout/customer.xml the theme name might be different for you.

    Refresh your cache, and all good!

    0 讨论(0)
  • 2020-12-14 21:55
    Find
    
    <customer_account_resetpassword translate="label">
        <label>Reset a Password</label>
        <remove name="right"/>
        <remove name="left"/>
    
        <reference name="head">
            <action method="setTitle" translate="title" module="customer">
                <title>Reset a Password</title>
            </action>
        </reference>
        <reference name="root">
            <action method="setTemplate">
                <template>page/1column.phtml</template>
            </action>
            <action method="setHeaderTitle" translate="title" module="customer">
                <title>Reset a Password</title>
            </action>
        </reference>
        <reference name="content">
            <block type="customer/account_resetpassword" name="resetPassword" template="customer/form/resetforgottenpassword.phtml"/>
        </reference>
    </customer_account_resetpassword>
    
    And Paste Below Code
    
    <customer_account_changeforgotten translate="label">
        <label>Reset a Password</label>
        <remove name="right"/>
        <remove name="left"/>
    
        <reference name="head">
            <action method="setTitle" translate="title" module="customer">
                <title>Reset a Password</title>
            </action>
        </reference>
        <reference name="root">
            <action method="setTemplate">
                <template>page/1column.phtml</template>
            </action>
            <action method="setHeaderTitle" translate="title" module="customer">
                <title>Reset a Password</title>
            </action>
        </reference>
        <reference name="content">
            <block type="customer/account_resetpassword" name="resetPassword" template="customer/form/resetforgottenpassword.phtml"/>
        </reference>
    </customer_account_changeforgotten>
    
    0 讨论(0)
提交回复
热议问题