2016-10-17 6 views
0

머리글에 이미지를 추가하는 방법 magento에서 머리글 및 320x72 (높이 x 너비) 2. 머리글 및 바닥 글 파일 - app-> design-> frontend-> 또는 shopping \ vendor \ magento \ theme에 표시 -frontend-blank \ Magento_Theme \ layout에 있습니다. 내가 단계적으로 변화를 제안해라.헤더 마젠타에 광고 이미지를 추가하는 방법 2

+0

Stack Overflow가 [프로그래밍 관련] (http://stackoverflow.com/help/on-topic) Q & A 사이트이기 때문에이 질문을 주제와 관련이 없도록 닫으려고합니다. 귀하의 질문은 프로그래밍에 관한 것이 아닙니다. 아마도 http://magento.stackexchange.com에 게시해야할까요? – Enigmativity

답변

0

1 단계 2 후속 디렉토리 아래 젠토에 새 테마를 확인

응용 프로그램/디자인/프론트 엔드///Magento_Theme/템플릿/공급 업체 \의 젠토에서 HTML

2 단계 복사 header.phtml 파일을 \ module-theme \ view \ frontend \ templates \ html로 복사하여 app/design/frontend// Magento_Theme/templates/html에 붙여 넣기

3 단계. 이제 header.phtml 파일을 변경할 수 있습니다.

Image can add in header by below code. 

<?php 
     $_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); 

     $storeManager = $_objectManager->get('Magento\Store\Model\StoreManagerInterface'); 

     $currentStore = $storeManager->getStore(); 

     $mediaUrl = $currentStore->getBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_MEDIA); 
    ?> 

    <img scr="<?php echo $mediaUrl.'/image.jpg' ?>">