The Top Entries plugin does almost exactly what I need, except for one thing. I have a custom profile field called {fullname}, which I’d like to use instead of the default {name}. Here’s what does work:
<h2>Top 10 Article Submitters</h2>
<p><ul><br />
{exp:top_authors weblog="weblog" limit="10"}<br />
<li>{name} - {count}</li><br />
{/exp:top_authors}<br />
</ul>Here’s what doesn’t, but what I need:
<h2>Top 10 Article Submitters</h2>
<p><ul><br />
{exp:top_authors weblog="weblog" limit="10"}<br />
<li>{fullname} - {count}</li><br />
{/exp:top_authors}<br />
</ul>I’m assuming I’ll need some kind of custom query to mimic this plugin’s output, but I don’t know where to start. Can a kindly soul help me out?