|
View Unanswered Threads - Printable Version +- MyBB Group (https://mybb.group) +-- Forum: Beside You (https://mybb.group/Forum-Beside-You) +--- Forum: Guidebook (https://mybb.group/Forum-Guidebook) +--- Thread: View Unanswered Threads (/Thread-View-Unanswered-Threads) |
View Unanswered Threads - effone - 23-03-2021 This will add a new specialized Search preset link "View Unanswered Threads" to header. Open template header_welcomeblock_member_search and add at the bottom: Now open your search.php file in an editor. Go to line no. around 1252, find this line: elseif($mybb->input['action'] == "finduserthreads")and change it to: elseif($mybb->input['action'] == "finduserthreads" || $mybb->input['action'] == "findunansweredthreads")Just after that, find this line: $where_sql = "uid='".$mybb->get_input('uid', MyBB::INPUT_INT)."'";and change it to: Now save the modified search.php and reupload to your forum root, replacing the existing one. Result:
|