I tried unsetting $topics, but it just removed all of the topics from the page, since super stickies are also topics.
I tried another approach and was able to retrieve the list of super stickies by putting this code in before a bbPress loop:
$topics = $bbdb->get_results("SELECT * FROM $bbdb->topics WHERE topic_start_time BETWEEN $startdate AND $enddate ORDER BY topic_start_time DESC");
I was also able to get stickies within a specific date range:
$startdate="20080500223740";
$enddate="20080502223740";
$topics = $bbdb->get_results("SELECT * FROM $bbdb->topics WHERE topic_sticky = 2 AND topic_start_time BETWEEN $startdate AND $enddate ORDER BY topic_start_time DESC");
This has a couple of issues:
1. Query doesn't retrieve the topic's first entry, just topic title.
2. Pagination is a little weird and doesn't respect what you have set for "Items per page" bbPress admin.
I'll try to see if I can work these out.
After that, the next step I want to do is to figure out how to run this query within Wordpress. Then, map the topic structure to a post structure (ie "topic_title" becomes "post_title"). Then, merge the query into a Wordpress loop. I suspect there will be pagination issues also in Wordpress. But one step at a time.