본문 바로가기

인터넷 TIP27

도메인이전으로 인한 엘리먼트 비활성화문제 url변경도 엘리먼트 활성화가 안됨 엘리멘터 > 라이센스를 눌러도 아래의 버튼만 나올뿐 반응 안함 해외 고객센터를 대화를 나눈 결과 아래의 답변이.... 1. On your WordPress dashboard, go to Elementor > License. 2. At the browser’s address bar, add this string at the end of the existing address: &mode=manually 3. Hit Enter. You should be redirected to the Manual Activation page. 4. Add your License Key ( which can be found in your subscription details via my.el.. 2023. 9. 29.
KBOARD- 항상 비번입력후 글읽기 FTP로 접속해서 /wp-content/plugins/kboard/class/KBoard.class.php 파일에 아래의 코드를 모두 주석 처리 $_SESSION['kboard_confirm'][$content_uid] = $password; 주석은 아래의 코드처럼 적용하시면 됩니다. //$_SESSION['kboard_confirm'][$content_uid] = $password; 2023. 9. 27.
KBOARD - KBoard 추가 이름 변경 //==============================Kboard 미디어 추가를 원하는 글로 변경 add_filter('gettext', 'my_text_strings', 999, 3); function my_text_strings($translated_text, $text, $domain){ if($domain == 'kboard'){ switch($translated_text){ case 'KBoard 미디어 추가': $translated_text = '이미지 업로드'; break; } } return $translated_text; } 2023. 9. 26.
KBOARD-좋아요 싫어요 인쇄 숨기기 추가 CSS에 아래의 내용 추가 .kboard-document-action{display:none;} .kboard-document-navi{display:none;} 2023. 9. 24.
엘리먼트 - server 500 error /* That's all, stop editing! Happy publishing. */ define('WP_MEMORY_LIMIT','256M'); 2023. 9. 23.
KBOARD-관리자만 글수정 글삭제 버튼 표시 FTP로 접속해서 /wp-content/plugins/kboard/skin/ask-one/document.php 파일 찾은 아래코드 120 아래코드로 변경 2023. 9. 23.