모두가 라이믹스 2.0을 업그레이드 할 수 있도록 서브파티 자료와의 호환성 해결방법을 글로 남기고자 합니다.

 

라이믹스 2.0 버전에서 새글 알림 애드온2가 오류가 발생합니다.

 

오류내용 : 새글 알림 글 제목 클릭시 404에러 발생 (EX : https://xetown.com/topics/20993 가 아니라 https://xetown.com//20993 으로 잘못 이동

 

해결방법 : /new_document_notify2/js 폴더의 new_document_notify.js 파일의 17~21번째줄을 아래와 같이 수정합니다

 

    if(data.type=='comment'){
        jQuery("#notify-div").append("<div class=\"notify-div-alert notify-div-alert-info new-document-notify\"><span class=\"notify-text\"><a href=\""+default_url+data.document_srl+"\">"+data.name+"님이 "+data.title+" 글에 댓글을 남기셨습니다</a></span></div>");
    }else{
        jQuery("#notify-div").append("<div class=\"notify-div-alert notify-div-alert-info new-document-notify\"><span class=\"notify-text\">새글 알림 : <a href=\""+default_url+data.document_srl+"\">"+data.title+"</a></span></div>");
    }

  • profile
    감사합니다.
    계속해서 좋은 지식 공유 부탁드립니다.