Jump to content

Recommended Posts

Hallo Miteinander

 

PS 1.4.2.5.

 

Ich möchten im Header.tpl PHP programmieren. Das geht doch eigentlich mit den {php} Tags.

Bei einer meiner Shops geht das aber nicht, im Quellcode wird dann gar nichts mehr angezeigt.

 

Zum Beispiel wenn ich im Body oder im Head Bereich das mache:

 

{php}

echo 'test';

{/php}

 

An was könnte das liegen? Danke für die Feedbacks!

Link to comment
Share on other sites

Die PHP Funktion ist in Smarty V3 Standardmäßig deaktivert.

 

Du kannst sie aber mittels anpassen der Config "smarty.config.inc.php" aktivieren.

 

dazu musst du nach:

 

$smarty = new Smarty();

 

folgendes einfügen:

 

$smarty->allow_php_tag = true;

 

dann klappts auch mit den {php} tags

 

 

Grüße

BluTiGeS

  • Like 1
Link to comment
Share on other sites

  • 4 weeks later...

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...