drupalfun.com
Content Profile vs. Advanced Profile Kit module
Hi there Dorien, yet another theory question from the top spammer!
I was wondering why you chose Content Profile without Advanced Profile Kit. I was checking the integration of the later and seems to do be more full-featured (especially with Author Pane). I checked elsewhere and noticed that the combination of Content Profile and Advanced Profile Kit is used so I am totally confused what exactly is APK !! Can you please clarify it?
- Login to post comments
Related Questions
Responses
2. Advanced content profile, is
Advanced content profile, is kind of the glue that makes different modules, such as content profile work together.
When I started my "experiments" with profiles, this module was not yet production ready, and therefore, has not been in my sites.
I think I had the same thoughts as you. What exactly does it do. Especially the fact that you need to do some code changes in order for the D5 version to work, I find it strange, and it withheld me from trying it.
Maybe someday I will.
As for the author pane, I understand, if you want to use it for advanced forum, to display the avatar. I'm looking into this at http://drupalfun.com/question/avatar-comments-avatar-posts
- Login to post comments
3. Thanks for the enlightenment
Thanks for the enlightenment Dorien!
What is really interesting with author pane is the fact that the comments show the avatar of the poster. On top of that the user relationships uses it for displaying blocks of avatar to display the relationships in the profile which I consider essential for what I want to do. Sadly the documentation is really unapparent. Even if you download the module and check the install.txt for 6.xx it shows the installation steps for D5!! With content profile taking over the bio and node those steps for a newbie is totally useless even to understand what is all about.Thankfully, there is couleeregiononline dot com as a showcase. The author-Michelle is busy making her site and writing a book plus two small children that need their mommy, so I'm already amazed that she continues development and I totally understand the lack of documentantion. Still, it really sucks on my side!!!
- Login to post comments
4. Hi, I just found a way of
Hi,
I just found a way of showing the avatar in your comments, by including this code in your comment.tpl.php, instead of the "if not empty print picture" line:
$node1= content_profile_load(profile, $user->uid);
$alt="alternative text"
$title=$node->title;
print theme('imagecache', 'Mini', $node1->field_avatar[0]['filepath'], $alt, $title, $attributes);
where Mini is your imagecache preset.
(this would be better to put in template.php via preprocess function, but I had no luck with it)
-------------------------
To include the avatar in authorpane, this post http://drupal.org/node/386756 is very handy.
- Login to post comments
5. Would it be possible to use
Would it be possible to use this?
print theme('imagecache', 'profilepic50x50', $content_profile->field_profilepic[0]['filepath']);
in the advf-author-pane.tpl.php file
I'm also using the advanced forum module and the content profile module.
- Login to post comments
7. Install and enable APK
apparently simple instructions on Install and enable APK
http://drupal.org/node/517182
I will start with this guide , any suggestions welcome,
- Login to post comments


1. more confused
I checked that node and bio are replaced by content profile module. Yet there is no documentation on advanced profile how those two are connected. I think I got it like this : to use advanced profile ,content profile is a prerequisite .Is that right? Damn, documentation is really hard to find in drupal!