Hello there,
I've read:
http://www.4homepages.de/forum/index.php?topic=10998.0and I tried to make it work, but no succes, till now....
I'll show you my steps I did:
I changed in
details.phpAdded the database field to the sql statement: $sql = "SELECT c.comment_id, c.image_id, c.user_id, c.user_name AS comment_user_name, c.comment_headline, c.comment_text, c.comment_ip, c.comment_date".get_user_table_field(", u.", "user_level").get_user_table_field(", u.", "user_name").get_user_table_field(", u.", "user_email").get_user_table_field(", u.", "user_showemail").get_user_table_field(", u.", "user_invisible").get_user_table_field(", u.", "user_joindate").get_user_table_field(", u.", "user_lastaction").get_user_table_field(", u.", "user_comments").get_user_table_field(", u.", "user_homepage").get_user_table_field(", u.", "user_icq")
.get_user_table_field(", u.", "user_skype")."
Made a var: $comment_user_icq_button = "";
$comment_user_skype_button = ""; $comment_user_profile_button = "";
And I did some stuf with it, to make it appear:$comment_user_skype = (isset($comment_row[$i][$user_table_fields['user_skype']])) ? format_text($comment_row[$i][$user_table_fields['user_skype']]) : "";
if (!empty($comment_user_skype)) {
$comment_user_skype_button = "<img src=\"
http://ph15.net:8000/skype/".$comment_user_skype." width=\"18\" height=\"18\" border=\"0\" alt=\"".$comment_user_skype."\" />";
}
And store it in the var: "comment_user_icq_button" => $comment_user_icq_button,
"comment_user_skype_button" => $comment_user_skype_button, "comment_user_ip" => $comment_user_ip,
And in the
comment_bit.html:
I've added:
{comment_user_skype_button}Did I mis something...nothing is printed...
Thanx in advance !!
Patrick