Created
March 31, 2017 15:05
-
-
Save davidangel/424591345de5a876f7dc1ee62b7ec74a to your computer and use it in GitHub Desktop.
Magento 2 Query: Toggle Template Hints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- toggle template hints in Magento 2 | |
UPDATE core_config_data | |
SET `value` =NOT `value` | |
WHERE path in( | |
'dev/debug/template_hints_storefront', | |
'dev/debug/template_hints_admin', | |
'dev/debug/template_hints_blocks' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment