I found this code, but im a newbie , so i dont know what to do, so that the comments dont have to be clicked to expand? Cmon, no1 can help?
function showDisplayImageDetails() {
global $rsgConfig, $rsgAccess;
$gallery = rsgGalleryManager::get();
// if no details need to be displayed then exit
if (! ( $rsgConfig->get("displayDesc") || $rsgConfig->get("displayVoting") || $rsgConfig->get("displayComments") || $rsgConfig->get("displayEXIF") ))
return;
$tabs = new mosTabs(0);
$tabs->startPane( 'tabs' );
if ( $rsgConfig->get("displayDesc") ) {
$tabs->startTab(_RSGALLERY_DESCR, 'rs-description' );
$this->_showDescription();
$tabs->endTab();
}
if ( $rsgConfig->get("displayVoting") ){
$tabs->startTab(_RSGALLERY_VOTING, 'Voting' );
$this->_showVotes();
$tabs->endTab();
}
if ( $rsgConfig->get("displayComments") ) {
$tabs->startTab(_RSGALLERY_COMMENTS, 'Comments' );
$this->_showComments();
$tabs->endTab();
}
if ($rsgConfig->get("displayEXIF") ) {
$tabs->startTab(_RSGALLERY_EXIF, 'EXIF' );
$this->_showEXIF();
$tabs->endTab();
}
$tabs->endPane();
}