Store In Demo Mode

i was wondering is there a way to change the store to demo mode??

Please open the config.local.php file and replace:

$config['demo_mode'] = false; 

with

$config['demo_mode'] = true; 

If you want to display themes panel and fill up the login and password fields, please add the following code to the config.local.php file:

define('THEMES_PANEL', true);
if (AREA == 'A') {
$config['demo_username'] = 'admin@example.com';
$config['demo_password'] = 'admin';
} else {
$config['demo_username'] = 'customer@example.com';
$config['demo_password'] = 'customer';
}

thank you very much yes i found it...