Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jwohlfeil/4f9345154f8b97cd92787d3ae122f443 to your computer and use it in GitHub Desktop.
Save jwohlfeil/4f9345154f8b97cd92787d3ae122f443 to your computer and use it in GitHub Desktop.
<?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