/modules/board/skins/xe_board 기본스킨을 기준으로  view_document.html 소스의 위치를 보면
102번재 줄에      {$oDocument->getContent(false)}로 수정하고  
145줄의 목록 수정 삭제 부터입니다.

 <!-- 목록, 수정/삭제 버튼 -->
    <div class="contentButton">
        <!--@if($module_info->default_style != 'blog')-->
        <a href="{getUrl('document_srl','')}" class="button {$btn_class}"><span>{$lang->cmd_list}</span></a>
        <!--@end-->
        <!--@if($oDocument->isEditable())-->
        <a href="{getUrl('act','dispBoardWrite','document_srl',$oDocument->document_srl,'comment_srl','')}" class="button {$btn_class}"><span>{$lang->cmd_modify}</span></a>
        <a href="{getUrl('act','dispBoardDelete','document_srl',$oDocument->document_srl,'comment_srl','')}" class="button {$btn_class}"><span>{$lang->cmd_delete}</span></a>
        <!--@end-->
                  <!--추천-->
                  <a href="#" onclick="doCallModuleAction('document','procDocumentVoteUp','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_vote')}</span></a>
                  <!--비추천-->
                  <a href="#" onclick="doCallModuleAction('document','procDocumentVoteDown','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_vote_down')}</span></a>
                  <!--신고-->
                  <a href="#" onclick="doCallModuleAction('document','procDocumentDeclare','{$document_srl}');return false;" class="button"><span>{$menu_str = Context::getLang('cmd_declare')}</span></a>
                  <!--프린트-->
                  <a href="{getUrl('','act','dispDocumentPrint','document_srl',$oDocument->document_srl)}" onclick="winopen(this.href);return false;" class="button"><span>{$lang->cmd_print}</span></a>
                  <!--스크렙-->
                  <!--@if($is_logged)-->
                  <a href="#" onclick="doScrap({$oDocument->document_srl}); return false;" class="button"><span>{$lang->cmd_scrap}</span></a>
                  <!--@end-->

    </div>

</div>


엮인글 발송은...
<a href="#" onclick="popopen('{getUrl()}?module=trackback&amp;act=dispTrackbackSend&amp;document_srl={$oDocument->document_srl}','SendTrackback');return false;" class="button"><span>{$lang->cmd_send_trackback}</span></a>

참고로 엮인글 발송은 글 작성자에게만 해당사항이 있으므로 수정/삭제 버튼 바로 앞이나 뒤에, 즉 if ~ end 사이에 넣어주세요.