Profile, comments how to?? Profile, comments how to??
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Profile, comments how to??

Started by mhd, September 23, 2004, 06:23:45 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

mhd

Hello,  I'm still trying to get familiar with Coppermine, so if anyone could help me here, or point me to where to look, would be really appreacite.

- How to make the name of author comments to link back to author profile instead of just a name?
- How to put a Send Email to This Person in a profile???
- How to put the number of comments and avarage points of a image into every thumbnail?

Thanks.

yoshikiwei

One question at a time please

heres to your first enquiry
in displayimage.php, find
        $params = array('{MSG_AUTHOR}' => $row['msg_author'],
replace with
        $params = array('{MSG_AUTHOR}' => $row[author_id] >1 ? "<a href=profile.php?uid=$row[author_id]>".$row['msg_author']."</a>" : $row['msg_author'],