Jump to content

Show different themes depending on a url


Recommended Posts

  • 4 weeks later...
  • 3 weeks later...
  • 2 weeks later...
  • 3 weeks later...
  • 2 months later...

I don't understand you.

 

I have to use two different themes. One theme for mobile devices and the other one for laptop, PC, etc..

 

I modified the settings.php.inc file (adding the script):

 

 

...

require_once('mobile_device_detect.php');

$mobile = mobile_device_detect();

 

if($mobile==true){

define('_THEME_NAME_', 'mobile');

}else{

define('_THEME_NAME_', 'prestashop');

}

...

 

But this is a good solution if I don't change the theme with the administration panel, because the settings.php.inc file is overwritten.

If I set the readonly attribute to the file, I cant change the theme, with the administration panel.

Link to comment
Share on other sites

I don't understand you.

 

I have to use two different themes. One theme for mobile devices and the other one for laptop, PC, etc..

 

I modified the settings.php.inc file (adding the script):

 

 

...

require_once('mobile_device_detect.php');

$mobile = mobile_device_detect();

 

if($mobile==true){

define('_THEME_NAME_', 'mobile');

}else{

define('_THEME_NAME_', 'prestashop');

}

...

 

But this is a good solution if I don't change the theme with the administration panel, because the settings.php.inc file is overwritten.

If I set the readonly attribute to the file, I cant change the theme, with the administration panel.

 

Hello,

 

yes, that is the downside of this solution.

 

If it doesn't suit your needs you will need to implement a different solution for setting the theme folder. As _THEME_NAME_ is a constant you can not change the value on run-time, so you will need to change the source code of every file which uses _THEME_NAME_ .

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...