Demo Cs-Cart

Hi, i want to know where is the cron ,of a demo-cs-cart on a site. Example:http://demo.cs-cart.com/ .

Where it says in the top panel: Demo will be reset in: . I searched, but i didint find anything for cs-cart 4+ . Help please. Thaks!

Help some one!

Hi,

#backenddesign/backend/templates/demo_theme_selector.tpl

#frontenddemo/design/themes/basic/templates/demo_theme_selector.tpl



I hope that helps,





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

[quote name='Vali' timestamp='1397547299' post='181745']

Hi,

#backenddesign/backend/templates/demo_theme_selector.tpl

#frontenddemo/design/themes/basic/templates/demo_theme_selector.tpl



I hope that helps,





Valentin

[color=#808080][size=2]part of hungryweb.net[/size][/color]

[/quote]



Thanks, a lot Vali, and if you can say, from where, i can`t activate that demo_theme_selector or from code, or from admin.Thanks a lot. Cheers Vali.

[quote name='florinsurdu' timestamp='1397551373' post='181748']

Thanks, a lot Vali, and if you can say, from where, i can`t activate that demo_theme_selector or from code, or from admin.Thanks a lot. Cheers Vali.

[/quote]



You can find the following line of code in the “config.local.php” file:



$config['demo_mode'] = false;




Thanks

I know that, but i thinked, the problem is my custom cs-cart. So i tried to put this on a default cs-cart in config.local.php :


// DEMO mode
$config['demo_mode'] = true;
$config['demo_username'] = 'demo@example.com';
$config['demo_password'] = 'demo';
#define('SKINS_PANEL',1);


Same problem,like on the custom cs-cart, that the demo mode works , its ok. But it doesnt appear that demo store panel, at the top of the site. I checked saveral times, all to be alright. And all is alright. still the demo store panel , doesnt appear. Probaly, the problem is somewere else. Suggestion?
Thnaks
s Ecomlabs.

[quote name='florinsurdu' timestamp='1397660560' post='181813']

I know that, but i thinked, the problem is my custom cs-cart. So i tried to put this on a default cs-cart in config.local.php :


// DEMO mode
$config['demo_mode'] = true;
$config['demo_username'] = 'demo@example.com';
$config['demo_password'] = 'demo';
#define('SKINS_PANEL',1);


Same problem,like on the custom cs-cart, that the demo mode works , its ok. But it doesnt appear that demo store panel, at the top of the site. I checked saveral times, all to be alright. And all is alright. still the demo store panel , doesnt appear. Probaly, the problem is somewere else. Suggestion?
Thnaks
s Ecomlabs.

[/quote]



I have checked the code. It seems that the following constant variable should be defined:



fn_define('THEMES_PANEL', true);




Try to add it to your config file and let us know the result.



Thanks

[quote name='eComLabs' timestamp='1397716435' post='181849']

I have checked the code. It seems that the following constant variable should be defined:



fn_define('THEMES_PANEL', true);




Try to add it to your config file and let us know the result.



Thanks

[/quote]

Cheers eComLabs, the answer was:
define('THEMES_PANEL', true);


Thanks a lot, eComLabs .

And thanks Vali, for information.

Hi Florin,

The SKINS_PANEL was already there :) but was commented, all you need to do was to uncomment ;)



#before```php


#define(‘SKINS_PANEL’,1);

#after```php
<br />
define('SKINS_PANEL',1);<br />

```<br />
<br />
More details in regards to php comments here <img src="upload://ssa1U17ndImgNZSdwFNmOF2yUgM.png" class="bbc_emoticon" alt=";)"> [url="http://www.php.net/manual/en/language.basic-syntax.comments.php"]http://www.php.net/manual/en/language.basic-syntax.comments.php[/url]<br />
<br />
I hope that helps,<br />
<br />
---<br />
Valentin<br />
[color=#808080][size=2]part of hungryweb.net[/size][/color]

[quote name=‘Vali’ timestamp=‘1397726710’ post=‘181868’]

Hi Florin,

The SKINS_PANEL was already there :) but was commented, all you need to do was to uncomment ;)



#before```php


#define(‘SKINS_PANEL’,1);

#after```php
<br />
define('SKINS_PANEL',1);<br />

```<br />
<br />
More details in regards to php comments here <img src="upload://ssa1U17ndImgNZSdwFNmOF2yUgM.png" class="bbc_emoticon" alt=";)"> [url="http://www.php.net/manual/en/language.basic-syntax.comments.php"]http://www.php.net/m...ax.comments.php[/url]<br />
<br />
I hope that helps,<br />
<br />
---<br />
Valentin<br />
[color=#808080][size=2]part of hungryweb.net[/size][/color]<br />
[/quote]<br />
<br />
Not SKINS_PANEL, but THEMES_PANEL. Please check.

Thanks a lot :grin: