Strawberry Theme > 영카트5 테마

영카트5 테마

좋은 댓글과 좋아요는 제작자에게 큰힘이 됩니다.

Strawberry Theme 정보

Strawberry Theme

첨부파일

strawberry.tar.gz (483.3K) 979회 다운로드 2020-08-10 17:52:30
테스트한 버전5.4.2.7.1
호환 가능 버전5.4 이상

본문

1.메인배너

관리자-배너관리-출력위치:메인/이미지설명: 배너 문구 입력

1794657427_1571711963.1061.png

2.왼쪽배너

관리자-배너관리-출력위치:왼쪽/이미지설명: 배너 문구 입력

1794657427_1571712009.901.png

 

3.이벤트배너

관리자-이벤트관리

 

1794657427_1571712035.1134.png

 

 

테마적용 : http://sir.kr/faq/57

 

추천
8
  • 복사

댓글 전체

Warning: include_once(/home/*****/www/theme/basic/lib/theme.lib.php): failed to open stream: No such file or directory in /home/*****/www/theme/strawberry/theme.config.php on line 149 Warning: include_once(): Failed opening '/home/*****/www/theme/basic/lib/theme.lib.php' for inclusion (include_path='.:/usr/share/pear:/usr/share/php') in /home/*****/www/theme/strawberry/theme.config.php on line 149

149는...
include_once(G5_THEME_LIB_PATH.'/theme.lib.php');

해당 파일은 있는데... 테마 설정에 들어가면 저런 오류가 뜨네요. 테마 적용도 안되고...
/theme/strawberry/theme.config.php 약 149라인

수정 전
include_once(G5_THEME_LIB_PATH.'/theme.lib.php');

수정 후
if ($config['cf_theme'] == "strawberry")
include_once(G5_THEME_LIB_PATH.'/theme.lib.php');
else
include_once(G5_PATH.'/theme/strawberry/lib/theme.lib.php');
include_once(G5_THEME_LIB_PATH.'/theme.lib.php');

이 코드가 잘못 되었습니다.

이 코드는 아래와 같이 수정하겠습니다.

if(defined('G5_THEME_LIB_PATH') && file_exists(G5_THEME_LIB_PATH.'/theme.lib.php')){
    include_once(G5_THEME_LIB_PATH.'/theme.lib.php');
}
© SIRSOFT
현재 페이지 제일 처음으로