Is it possible to override Magento 2 Luma phtml Files? I've created a new theme based on Luma which is working perfectly but I can't find any phtml files anywhere.
I've also noticed my app/code directory is completely empty.
Is it possible to override Magento 2 Luma phtml Files? I've created a new theme based on Luma which is working perfectly but I can't find any phtml files anywhere.
I've also noticed my app/code directory is completely empty.
you can find luma theme files are located
copy from here
vendor/magento/theme-frontend-luma
add in your theme
app/design/frontend/spacename/theme/
you are missing templates in path /app/design/frontend/Penguin/default/Magento_Theme/templates/html/header.phtml
php bin/magento setup:static-content:deploy en_US
– Qaisar Satti
Feb 16 '16 at 07:29
/app/design/frontend/Penguin/default/Magento_Theme/html/header.phtml - I also created a module which is active but doesn't pull in the file app/code/Atomic/Penguin/view/frontend/templates/html/header.phtml. I just want to easily be able edit some of the vendor phtml files, without editing vendor itself (I'm assuming I'm not supposed to edit vendor files).
– Liam McArthur
Feb 16 '16 at 07:49
/app/design/frontend/Penguin/default/Magento_Theme/templates/html/header.phtml this will be your file path
– Qaisar Satti
Feb 16 '16 at 07:51
App/code empty is ok if you installed via Composer!
In your app/design/frontend/Magento/luma folder you can find all your modules that are customized either from app/design/frontend/Magento/luma or the core modules app/code/Magento/
For catalog list phtml you can for example copy the files from
app/code/Magento/catalog/view/frontend/templates/product/list.phtml into your custom app/design/frontend/<yourvendorfolder>/<yourthemefolder>/Magento_Catalog/templates/html/list.phtml
here you go, think you should run through the devdocs some more to get to know the logic behind the magento2 file and override structure. its not like Magento1 just copy over few templates files and done. 85% is done via layout xml files and just small bits via phtml.
Good luck!
vendor\magento\theme-frontend-luma to design in app but after clear cache theme not apply new template
– mrtuvn
Feb 15 '16 at 10:53