안녕하세요.
개인정보 취급 방침을 넣기 위해서
참고 해서 넣어봤습니다.
https://www.cosmosfarm.com/threads/document/33866
이거 이용해서 추가도 해봤는데요.
그러명 현 링크와 같이 글이 깨져서 나와요.
테마트 the7이고 설정은 아래와 같습니다.
원인파악이 안되어서 질문 남깁니다.
감사합니다.
<?php
/**
* The7 theme.
*
* @since 1.0.0
*
* @package The7
*/
defined( 'ABSPATH' ) || exit;
/**
* Set the content width based on the theme's design and stylesheet.
*
* @since 1.0.0
*/
if ( ! isset( $content_width ) ) {
$content_width = 1200; /* pixels */
}
/**
* Initialize theme.
*
* @since 1.0.0
*/
/* 개인정보 활용 동의 */
add_filter('kboard_skin_fields', 'my_kboard_skin_fields', 10, 2);
function my_kboard_skin_fields($fields, $board){
/* if($board->id == '2'){ // 실제 적용될 게시판 ID 값으로 변경해주세요. */
if(in_array($board->id, array('2'))){ // 게시판이 여러 개일 경우...
if(!isset($fields['agree_checkbox'])){
$fields['agree_checkbox'] = array(
'field_type' => 'agree_checkbox',
'field_label' => '개인정보 제공 및 활용 동의서',
'class' => 'kboard-attr-checkbox',
'hidden' => '',
'meta_key' => '',
'field_name' => '',
'permission' => '',
'roles' => '',
'default_value' => '',
'placeholder' => '',
'required' => '',
'show_document' => '',
'description' => '',
'close_button' => 'yes'
);
}
}
return $fields;
}
/* 동의서 양식 */
add_filter('kboard_get_template_field_html', 'my_kboard_get_template_field_html', 10, 4);
function my_kboard_get_template_field_html($field_html, $field, $content, $board){
if($field['field_type'] == 'agree_checkbox'){
ob_start();
?>
<div class="kboard-attr-row meta-key-<?php echo esc_attr($field['meta_key'])?> required">
<label class="attr-name agree-title" for="agree_checkbox">
<p class="field-name"><?php echo esc_html($field['field_name'] ? $field['field_name'] : $field['field_label'])?></p>
</label>
<div class="attr-value agree-content" style="margin:0;">
<div class="privacy-announce" style="margin: 0; padding: 18px 20px 5px 10px; height: auto; line-height: 20px; background-color: #f2f2f2; overflow-y: auto;">
<ol>
<li><strong>수집 목적</strong> : 회원가입 및 서비스 신청 등과 관련된 상담안내</li>
<li><strong>수집 항목</strong> : 이름 ,전화번호, IP (자동수집)</li>
<li><strong>보유 및 이용기간</strong> : 상담 및 해당 업무 종료 후 1년 이내 파기</li>
</ol>
<p style="font-size: 14px; padding-left: 20px; padding-bottom: 12px; line-height: 20px; color: #1d9dee;">※ 개인정보 수집 및 이용에 대해서 거부할 수 있으며, 거부 시에는 가입 및 상담 등의 안내 서비스를 받으실 수 없습니다.</p>
</div>
<div style="text-align:center;">
<input type="hidden" class="required" name="kboard_option_<?php echo esc_attr($field['meta_key'])?>" value="1">
<label><input type="checkbox" class="required" name="kboard_option_<?php echo esc_attr($field['meta_key'])?>" value="1"> 개인정보이용 동의</label>
</div>
</div>
</div>
<?php
$field_html = ob_get_clean();
}
return $field_html;
}
require trailingslashit( get_template_directory() ) . 'inc/init.php';
안녕하세요~^^
글자가 깨지는 건 99% 인코딩 문제입니다.
코드 수정 시 UTF-8 인코딩으로 작업해주셔야 합니다.
혹시 메모장으로 편집하셨는지요?
Notepad++라는 무료 편집기를 사용해보세요.
에디터에서 특별한 설정은 필요하지 않습니다.
한글도 지원하기 때문에 추천드립니다.
https://notepad-plus-plus.org/
워드프레스 홈페이지 수정후 한글 깨지는 문제 해결 방법도 참고해보세요.
고맙습니다.
편집기는 edit+ 사용중입니다.
편집기 문제는 아닌거 같습니다.
질문
설명에 코드 두개를 각각 하단에 추가하는게 맞나요?
자문자답 합니다.
(사실 안내 들었습니다.)
에디터에서 인코딩 변환을 utf-8로 설정해서 정상으로 됩니다.
감사합니다.