Hi,
I have installed SU fine according to the instructions.
I have managed to make a "widget" using "WP PHP widget" and this code:
<?php
$dl = get_downloads('limit=10&orderby=hits&order=desc');
if (!empty($dl)) {
echo '<ul>';
foreach($dl as $d) {
echo '<li><a href="http://my_url?did='.$d->id.'" title="Version '.$d->version.' downloaded '.$d->hits.' times" >'.$d->title.' ('.$d->hits.')</a></li>';
}
echo '</ul>';
}
?>
just replace my_url with your own url to the page you set up with SU.
what I would like to know is if I could search bbpress with this and how?
Thanks