sports-point24 Posted May 19, 2008 Report Share Posted May 19, 2008 Hallo, wie in der Überschrift zu lesen, erscheint nur auf der index.php der Begrüßungstext. Wenn ich auf Startseite im Navimenü gehe, also die Seite die auch im Content_Manager angelegt ist. Dann erscheint du die Variable {$greeting} Woran kann das liegen? Wäre über eine Antwort sehr dankbar. Link to comment Share on other sites More sharing options...
Suchender Posted May 22, 2008 Report Share Posted May 22, 2008 Content Manger -> Index *Inhalt komplett löschen und neu eingeben Link to comment Share on other sites More sharing options...
sports-point24 Posted May 26, 2008 Author Report Share Posted May 26, 2008 Habe ich versucht, aber leider ohne Erfolg. Die Begrüßung auf der index.php funktioniert, sobald man aber die Startseite über die Content box nimmt, klappts nicht. Link to comment Share on other sites More sharing options...
sonic24 Posted May 26, 2008 Report Share Posted May 26, 2008 Der Platzhalter "{$greeting}" wird in /includes/modules/default.php gefüllt, und da auch nur im Block "// default page". Ohne Eingriffe im Code ist es nicht möglich, {$greeting} ausserhalb der Startseite zu benutzen. Link to comment Share on other sites More sharing options...
sports-point24 Posted May 26, 2008 Author Report Share Posted May 26, 2008 Ok, die Einträge hab ich gefunden. Seh ich das richtig, dass dann die shop_content.php angepasst werden muss, damit das Greeting da interpretiert wird? Link to comment Share on other sites More sharing options...
sonic24 Posted May 26, 2008 Report Share Posted May 26, 2008 Ungetestet aus dem Bauch heraus (ggf. noch was includen?!?) ganz am Ende$smarty->assign('main_content', $main_content);[/PHP] durch [PHP]$smarty->assign('main_content', str_replace('{$greeting}', xtc_customer_greeting(), $main_content));[/PHP] ersetzen? Link to comment Share on other sites More sharing options...
sports-point24 Posted May 26, 2008 Author Report Share Posted May 26, 2008 Wunderbar!!! Hat funktioniert! Besten Dank! Link to comment Share on other sites More sharing options...
commulive Posted August 18, 2008 Report Share Posted August 18, 2008 Hi, bei mir funtkioniert das leider nicht... da kommt die meldung: Fatal error: Call to undefined function: xtc_customer_greeting() in /homepages/6/d69311376/htdocs/tonkarte/beta/shop_content.php on line 146 LG Patrick Link to comment Share on other sites More sharing options...
Hetfield Posted August 19, 2008 Report Share Posted August 19, 2008 Du musst noch nach folgender Zeile: require_once (DIR_FS_INC.'xtc_validate_email.inc.php');[/PHP] dies hier einfügen: [PHP]require_once(DIR_FS_INC . 'xtc_customer_greeting.inc.php');[/PHP] Sonst steht dir die Funktion [i]xtc_customer_greeting()[/i] nicht zur Verfügung. MfG Hetfield Link to comment Share on other sites More sharing options...
commulive Posted August 19, 2008 Report Share Posted August 19, 2008 Super, vielen Dank, jetzt funktioniert es!! LG Patrick Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.