Skip to content

Instantly share code, notes, and snippets.

@davidangel
Created March 31, 2017 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidangel/424591345de5a876f7dc1ee62b7ec74a to your computer and use it in GitHub Desktop.
Save davidangel/424591345de5a876f7dc1ee62b7ec74a to your computer and use it in GitHub Desktop.
Magento 2 Query: Toggle Template Hints
-- 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