found it myself ... and sharing my findings ..
find what you see below
inc/classes/BxDolCmts.php
var $_iId = 0; // obect id to be commented
var $sTextAreaId;
var $iGlobAllowHtml;
var $iGlobUseTinyMCE;
var $_sSystem = 'profile'; // current comment system name
var $_aSystem = array (); // current comments system array
var $_aCmtElements = array (); // comment submit form elements
var $_oQuery = null;
var $_sOrder = 'asc'; <--- changed from desc to asc .. desc = descending .. asc = ascending
Now the next thing on the list .. expand all comments ..
must be somewhere in the code below found in:
templates/base/scripts/BxBaseCmtsView.php
function _getBrowse() {
$sRet = '
<div class="cmt-order">' . $this->_oPaginate->getSorting(array('asc' => '_oldest first', 'desc' => '_newest first'))
<input type="checkbox" id="cmt-expand" name="cmt-expand" onclick="javascript:' . $this->_sJsObjName . '.expandAll(this)"/><label for="cmt-expand">' . _t('_expand all') . '</label>
</div>
<div class="cmt-pages">' . $this->_oPaginate->getPages() . '</div>
<div class="clear_both"> </div>';
return $sRet;
someone care to help me out here?