Hello
I'd like to hide this message. It's always shown. How/where do i need to configure that?
Solved! Go to Solution.
Hi @patrick_tschumi
You can comment this section from phtml file.
You can override into the custom theme if you are using magento default theme.
You can get the template path using following way:
https://docs.magento.com/m2/ce/user_guide/system/template-path-hints.html
OR using command line:
Now you can enable or disable Template path hints via Command Line Go to Magento 2 root folder and run the following command:
Enable
php bin/magento dev:template-hints:enable
Disable
php bin/magento dev:template-hints:disable
Then flush cache:
php bin/magento cache:flush
I hope it will help you!
Hi @patrick_tschumi
You can comment this section from phtml file.
You can override into the custom theme if you are using magento default theme.
You can get the template path using following way:
https://docs.magento.com/m2/ce/user_guide/system/template-path-hints.html
OR using command line:
Now you can enable or disable Template path hints via Command Line Go to Magento 2 root folder and run the following command:
Enable
php bin/magento dev:template-hints:enable
Disable
php bin/magento dev:template-hints:disable
Then flush cache:
php bin/magento cache:flush
I hope it will help you!
That was exactly what I was always searching for. Didn't know that.
You can get the template path using following way:
https://docs.magento.com/m2/ce/user_guide/system/template-path-hints.html
Great
Thanks!