Customize Magento Template

I installed some theme that has a header logo defined in the header.phtmlfollowing way:

<img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" />

I really do not want to change this template, also this .phtml file says that it did not edit it. How can I cancel this more efficiently getLogoSrc?

+3
source share
2 answers

In the web admin, go to "System"> "Configuration"> "Design" and scroll down to the heading> "Image Src Logo". Paste the file name saved in /skin/frontend/default/new_theme/images/and click "Save."

+4
source

Go to the folder with the images of the templates, for example: /skin/frontend/default/new_theme/images/

0

Source: https://habr.com/ru/post/1764807/


All Articles