Hello,
I overwrite the file:
app/design/frontend/company/v2/Magento_Theme/templates/html/header/logo.phtml
But it seems the file would not be loading!
How can I check, if this file is includes in theme and active?
Thank you!
Solved! Go to Solution.
Hey @hanhoe
Please enable the template path hints and check again.
There are two methods to do so:
Connect to your store with SSH terminal, and go to the root directory of your Magento 2 store.
Enable template path hints for frontend:
php bin/magento dev:template-hints:enable
Disable template path hints for frontend:
bin/magento dev:template-hints:disable
Clean and flush cache:
bin/magento cache:clean bin/magento cache:flush
Note: You can’t enable or disable template path hints for the admin using this method.
Hope it helps.
Hey @hanhoe
Please enable the template path hints and check again.
There are two methods to do so:
Connect to your store with SSH terminal, and go to the root directory of your Magento 2 store.
Enable template path hints for frontend:
php bin/magento dev:template-hints:enable
Disable template path hints for frontend:
bin/magento dev:template-hints:disable
Clean and flush cache:
bin/magento cache:clean bin/magento cache:flush
Note: You can’t enable or disable template path hints for the admin using this method.
Hope it helps.