Jump to content

Creer un bouton pour change le style


Recommended Posts

Bonjour,

 

je suis debutant prestashop...

 

je souhaite creer un bouton pour changer design par exemple

Style1 = global.css

style2 = global.noir.css

 

J'avais faire pour un autre site ma propore PHP :

 

Dans header :

<?php

if (isset($_GET['usher'])) {

$recu_usher = $_GET['usher'];

if ($recu_usher='active') {

<link href="/themes/default/css/global.noir.css" rel="stylesheet" type="text/css" media="all">

}

}

?>

 

(avec session cookie etc....bien sur)

 

Dans Body :

<a href="index?usher=active" >Style en noir</a>

 

Le voic ma question, je souhaite pareil pour dans le site Prestashop :

 

J'ai cherche et essai de comprendre... il faut creer php et puis dans tpl mais je n'ai pas trouve d'un forum s'explique clairement pour utiliser "smarty"

 

J'ai tout essaye et ca marche pas... je suis sous PS1.5

 

Merci

Edited by Pixelc@m (see edit history)
Link to comment
Share on other sites

J'ai essaye comprendre http://www.prestasho...un-fichier-tpl/

mais ca marche pas

 

J'ai modifier : config/smarty.config.inc.php :

define('_PS_SMARTY_DIR_', _PS_TOOL_DIR_.'smarty/');

require_once(_PS_SMARTY_DIR_.'SmartyBC.class.php');

 

puis je voulais test sur themes/default/test.php :

<?php $echo="hello"; ?>

 

ensuite sur modules/blocktopmenu/blocktopmenu.tpl : dernier ligne pour tester

{include_php file='../../themes/default/test.php'}

{ php } echo "ca marche?" {/ php }

 

Et voila s'affiche rien.... GRRR

HELP Merci

Edited by Pixelc@m (see edit history)
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...