Created
February 14, 2017 12:39
-
-
Save jwohlfeil/4f9345154f8b97cd92787d3ae122f443 to your computer and use it in GitHub Desktop.
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
<?php | |
// find 'path' in table 'core_config_data' e.g. 'design/head/demonotice' | |
$my_change_config = new Mage_Core_Model_Config(); | |
// turns notice on | |
$my_change_config->saveConfig('design/head/demonotice', "1", 'default', 0); | |
// turns notice off | |
$my_change_config->saveConfig('design/head/demonotice', "0", 'default', 0); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment