문제

Can anyone help how to change header's "sign-in" label to "log-in" in Magento 2.

도움이 되었습니까?

해결책

The easiest way for change the label is Translation.

You need to just make i18N folder in your app/code/spacename/modulename and just create one CSV file en_US and give translation script over there.

See Example : en_US.csv

"Sign In","Login"

No need to override anything for the small change.

다른 팁

If you want to change the 'create account' label with XML the code you have to paste

Go to app/design/frontend/vendor/theme/Magento_Theme/layout/default.xml

and place below code

<referenceBlock name="register-link">
    <arguments>
        <argument name="label" xsi:type="string" translate="true">Resiter Account</argument>
    </arguments>
</referenceBlock>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top