Magento – Template Path Hints not showing on front-end in magento2

debugmagento2template-hints

  • In my case, after enable the path Hints, from magento2 back-end section, its not showing. I enabled the settings in.

    Store > Configuration > Advanced > Debug > Enabled Template Path Hints for Storefront > Yes

    Can anyone tell me how fix this ?

    enter image description here

Best Answer

As @matinict mentioned in his comment, in Magento 2.3 you need to append ?templatehints=<Parameter Value> in your URL and your magento should be on Developer mode.

So your url will be look like as following:

http://localhost?templatehints=magento

and for any particular page URL will be like that

http://localhost/checkout/cart/?templatehints=magento

enter image description here

Related Topic