By mokargas on
How can I add the user picture of the user who posted a recent comment to this block? (Preferably without modding the core).
How can I add the user picture of the user who posted a recent comment to this block? (Preferably without modding the core).
Comments
=-=
without modifying core, you would write a custom DB query and add it in administer -> blocks using the php input format.
take a look at some of the php snippets in the php snippets section of the handbook and you will find a few user picture type snippets that you can play with. Do so on a page content type until you get the snippet to work correctly. adding php that is not correct into a block can halt your site forcing you to manually go into the DB and shut the custom block off.
Can someone please post the code?
For those of us who are not PHP coders, would someone PLEASE post a working code for such a block?
I can see that there have been many people who wanted to creat such a "recent comments" block with avatars of the commenters. It would be nice to simply have a code that other drupal users could just copy and paste into their custom block.
Many thanks in advance
=-=
no code snippet. One would use the views.module for this in Drupal 6.x if you are using Drupal 5.x you may want to sift through the snippets in the documentation area as I believe there are multiple snippets of this sort these days.
Hi, It seems like Google is
Hi,
It seems like Google is loosing it's edge - you can no longer find _exactly_ what you're looking for simply by entering simple keywords.
Anyway... After googling with some weird word combinations I found the question to my own answer here:
http://drupalsn.com/learn-drupal/drupal-questions/question-3013#comment-506
basically, for Drupal 5.x just enter the following code into your template.php
Note: don't forget to remove
<?phpand?>at the beginning and the end of this code.Note2: you will also need to enter the exact name of your imagecache preset instead of "30px_user_pic".
Hope this helps the non-coder Drupal users ;)
Custom Block
You can create a custom block under Views.
Sorry I don't follow, how
Sorry I don't follow, how would I get the profile user pics? (can't select under views)