{$post['profilelink']} - Druckversion +- MyBB.de Forum (https://www.mybb.de/forum) +-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html) +--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html) +--- Thema: {$post['profilelink']} (/thread-3300.html) |
{$post['profilelink']} - Sarah - 30.09.2006 Wo befindet sich nun der Code den diese Variable aufruft? Will dort nämlich ein Profilfeldstring einfügen... (Variabler String) ... für Nachnamen. RE: {$post['profilelink']} - Garlant - 30.09.2006 Hallo Sarah, Dieser string befidet sich im Template postbit_user_author. Mfg Garlant RE: {$post['profilelink']} - Sarah - 30.09.2006 Ja das stimmt... und der Inhalt dieses Strings? Denn im postbit_user_Author sieht das komisch aus wenn ich darüber einen Nachnamen anhänge. Darum will ic hdas direkt über den Ort woher der String sein Wert bezieht. Das suche ich. RE: {$post['profilelink']} - Garlant - 30.09.2006 Hallo Sarah, Das ganze ist in der ./inc/functions_post.php Wenn du es auf Anhieb suchen möchtest, so suche diesen String in functions_post.php: PHP-Code: $post['profilelink'] = "<a href=\"".str_replace("{uid}", $post['uid'], PROFILE_URL)."\">".format_name($post['username'], $post['usergroup'], $post['displaygroup'])."</a>"; Mfg Garlant RE: {$post['profilelink']} - Sarah - 01.10.2006 Hat super geklappt... danke. |