문제

편집 할 위치 및이 소스 코드 찾기. 마젠토 코드는 이해하기 어렵습니다.

여기에 이미지 설명을 입력하십시오

도움이 되었습니까?

해결책

이 작업을 수행하는 더 좋은 방법이있을 수 있지만 이는 거기에 도착해야합니다. magento \ app \ design \ adminhtml \ default \ default \ layout \ main.xml

라인 57

<action method="setTitle" translate="title"><title>Magento Admin</title></action>
.

다른 팁

예, 제목을 편집하려면 Magento Admin에서 단순히 에서 편집 할 수 있습니다.

<title>
< ?php echo ($this->getForcedTitle()) ? Mage::getStoreConfig('design/head/title_prefix').' '.$this->getForcedTitle().' '.Mage::getStoreConfig('design/head/title_suffix') : $this->getTitle() ?>
</title>
.

또는 Magento Admin에서 추가 된 제목 접두사 / 수 픽스를 사용하지 않으려는 경우 와 함께

<title>
< ?php echo ($this->getForcedTitle()) ? $this->getForcedTitle() : $this->getTitle() ?>
</title>
.

이제는 레이아웃 파일을 통해 페이지의 "강제"제목을 설정합니다

<reference name="head">
<action method="setForcedTitle"><title>Account Dashboard</title></action>
</reference>
.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top