Not related to themes… we gave you the solution over there… you just need to be able to manage themes…
so search requests with the query args are being redirected back to the main forum page for some reason… looking again at your .htaccess rewrite rules, it is perhaps something there… those are NOT the standard wp rewrite rules… but do not know if wrong because of the fairly unique set up you are using…
normally, the rules would be:
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
you are doing something different with index.php – namely the C argument…
and the search request will use a url based off of index.php…
http://www.teachlynx.com/index.php?sp_ahah=search&sfnonce=52666d2e01
which then will process the query args…
so probably worth checking the rules again…