4images Forum & Community
4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: Stoleti on January 13, 2006, 03:44:38 PM
-
I've a simple question, how make the tag {comment_user_name} on image comments (comment_bit.html) as profile link ?
Cheers ;)
-
Follow this tutorial :
http://www.4homepages.de/forum/index.php?topic=10897.0
it should help you out.
-
in details.php find:
"comment_user_profile_button" => $comment_user_profile_button,
Insert below: "comment_user_profile_link" => ($comment_user_id > GUEST) ? $comment_user_profile_link : REPLACE_EMPTY,
Then in comment_bit.html template you can use {if comment_user_profile_link}<a href="{comment_user_profile_link}">{endif comment_user_profile_link}{comment_user_name}{if comment_user_profile_link}</a>{endif comment_user_profile_link}
-
thanks , works perfect :D