1. 정확한 제품 또는 플러그인 이름
버전 : 워프 6.4.3
게시판: 6.4, 댓글 : 5.3
워프 업데이트 이후 대댓글 입력창 클릭이 안되는 문제가 발생하고 있습니다.
어느 부분을 수정해야 하는지 알 수 있을까요?
Imgur: The magic of the Internet
3. 확인 가능한 상세 페이지 주소
https://www.oppadu.com/question/
4. 수정한 코드 내역 (있다면)
임시방편으로
function kboard_comments_field_show(formOrEvent) {
let formElement;
if (formOrEvent.target && formOrEvent.target.formElement) {
// Called with event, extract form from event
formElement = jQuery(formOrEvent.target.formElement);
} else if (jQuery(formOrEvent).is('form')) {
// Called directly with a form element
formElement = jQuery(formOrEvent);
} else {
console.error('Invalid argument passed to kboard_comments_field_show');
return;
}
jQuery('.comments-field-wrap').hide();
jQuery('.comments-submit-button').hide();
jQuery('.comments-field-wrap', formElement).show();
jQuery('.comments-submit-button', formElement).show();
}
으로 수정하여 해결하였으나, 조치가 필요해보입니다.
감사합니다.
안녕하세요~^^
문제점을 찾아주셔서 감사합니다
빠른 시일 내에 오류 수정해서 업데이트해보도록 하겠습니다.
업데이트 후 다시 답변드리겠습니다.
고맙습니다.