1. Create new plugin (e.g. qa-plugin/category-desc)
2. Upload qa-plugin.php under qa-plugin/category-desc
3. Upload qa-cd-overrides.php under qa-plugin/category-desc
<?php
if (!defined('QA_VERSION')) {
header('Location: ../../');
exit;
}
function qa_q_list_page_content($questions, $pagesize, $start, $count, $sometitle, $nonetitle, $navcategories, $categoryid, $categoryqcount, $categorypathprefix, $feedpathprefix, $suggest, $pagelinkparams=null, $categoryparams=null, $dummy=null)
{
$qa_content = qa_q_list_page_content_base($questions, $pagesize, $start, $count, $sometitle, $nonetitle, $navcategories, $categoryid, $categoryqcount, $categorypathprefix, $feedpathprefix, $suggest, $pagelinkparams, $categoryparams, $dummy);
if(count($navcategories) && isset($categoryid)) {
$catinfo = $navcategories[$categoryid];
if(isset($catinfo['content']) && !empty($catinfo['content']))
//$qa_content['title'] = $qa_content['title'].'<small style="display:block;margin-top:10px;">'.$catinfo['content'].'</small>'; // for Bootstrap
$qa_content['title'] = $qa_content['title'].'<small style="font-size:65%;color:#777;display:block;margin-top:10px;">'.$catinfo['content'].'</small>'; // for pure HTML4 / HTML5
}
return $qa_content;
}