안녕하세요?

 

제가 지금 새 댓글 표시 애드온을 사용중인데요

 

캡처.JPG

 

 

위 사진처럼 N 표시 아이콘이 댓글 아래에 달립니다 ㅠ..

 

어떻게 해결을 해야 할까요?

  • ?
    저는 라이믹스 사용 중인데 한번 표시되고 새로고침하면 새글이 사라지네요..ㅠ
  • profile
    $pattern = sprintf('/<!--BeforeComment\(%s,.*\)-->/U', $oComment->comment_srl);
    이부분을 다르게 고침 될거같은데ㅎㅎ 개발자가 아니라서 다른분의 답변을 기다려 봐야겠네요.
  • profile ?
    파일 보니까

    // new 이미지 적용
    foreach($oComments as $oComment) {
    if ($oComment->regdate > $time_check) {
    if ($addon_info->position) {
    $pattern = sprintf('/<!--AfterComment\(%s,.*\)-->/U', $oComment->comment_srl);
    $output = preg_replace($pattern, "$new_image $0", $output);
    }else{
    $pattern = sprintf('/<!--BeforeComment\(%s,.*\)-->/U', $oComment->comment_srl);
    $output = preg_replace($pattern, "$0 $new_image", $output);
    }
    }
    }

    라고 되어있던데 코딩을 잘 못해서 어떻게 바꿔야 할지 잘 모루겠네여 ㅠㅠ