CHANGE LOG
- 팝업창이 닫히지 않는 경우에 코드 수정을 통해서 업데이트를 진행하실 수 있습니다.
- 코드 편집은 https://ko.wordpress.org/plugins/insert-headers-and-footers/ ( 플러그인 ) 을 추천합니다.
- 2025.03.20 ~ 2025.03.21 사이에 구매하신 분들에게 나타날 수 있는 버그입니다.
- 수정이 어려우실 경우 카페24에 1:1 문의 남겨주시면 수정 도움 드리겠습니다 !!
스타일 수정
파일 경로 : \wp-content\plugins\hellopanda-theme-expand\build\view.css
build\view.css
13897 라인
---- 이 부분 삭제하고 -------------------------
body.hellopanda-frontend .wp-block-hellopanda-popup-block.hellopanda-blocks-popup-active[status=ready] {
/* 추가 */
display: flex !important;
flex-direction: column !important;
}
---- 이걸로 변경 -------------------------
body.hellopanda-frontend .wp-block-hellopanda-popup-block.hellopanda-blocks-popup-active[status=ready] {
/* 추가 */
flex-direction: column !important;
}
body.hellopanda-frontend .wp-block-hellopanda-popup-block.hellopanda-blocks-popup-active[status=ready].closed {
display: none !important;
}
body.hellopanda-frontend .wp-block-hellopanda-popup-block.hellopanda-blocks-popup-active[status=ready]:not(.closed) {
display: flex !important;
}
스크립트 수정
파일 경로 : \wp-content\plugins\hellopanda-theme-expand\src\assets\script\theme.js
build\view.js
3397번 라인
---- 이 부분 삭제하고 -------------------------
popupElement.style.display = 'none'; // 팝업 숨기기
---- 이걸로 변경 -------------------------
popupElement.classList.add('closed');