I have a developer that I hired to help me with my site but he can't figure out a couple things. I wanted 2 blocks, 1 that would pull the recent articles by the current article author and display them under the current article being viewed or on the sidebar. He said it's not possible with the side bar but I've seen it, I just can't find out how to do it.
This is the block he made for the "Other Article's By Author" block but it just pulls all the recent articles, not just the ones from the author.
<div class='general_box'>
<h3>{$title}</h3>
<ul class='hfeed'>
<if test="is_array( $records ) && count( $records )">
{parse striping="feed_striping" classes="row1,row2 altrow"}
<foreach loop="$records as $r">
<li class='hentry {parse striping="feed_striping"}'><a href='{$r['url']}' rel='bookmark' title='{$r['title']}'>{$r['title']}</a>
<br /><span class='date'><abbr class="published" title="{parse expression="date( 'c', $r['date'] )"}">{parse date="$r['date']" format="short"}</abbr></span>
<span class='desctext'>{IPSText::truncate( strip_tags($r['content']), 32 )}</span>
</li>
</foreach>
</if>
</ul>
</div>
<br />
The second block I wanted that he says he can't figure out how to do is a block that will show other articles with the same topic. If I have 2 articles in Health Care and 3 in Personal Care, I would like it to suggest other articles with the same tags or even categories. I have that feature on the board but he can't figure out how to get it to show for article tags or categories. Any help would be appreciated. I posted this on the main IPB forums but no help so far, I thought I'd ask here.