이번 패치는 필수 패치 입니다.
2월 24일 이전 고객님들께 제공되며 이후의 고객님은 이미 테마에 적용되어 있습니다.
1. 세부정보중 '배송비' 옵션이 표시된 경우 배송비를 선택하면 세부정보가 닫혀 배송비를 선택할 수 없는 점
스마트디자인 편집창에서 아래파일을 열어주신뒤 코드를 수정해주세요.
레이아웃 / 기본레이아웃 / layout / basic / tool / js / script.js
수정전
$(document).ready(function() {
jQuery_MST('.detail_open_view').on('click', function(){
jQuery_MST(this).next('.detail_open_desc').slideToggle( 'fast' );
});
jQuery_MST('.detail_open_desc').on('click', function(){
jQuery_MST(this).slideUp( 'fast' );
});
});
수정후
$(document).ready(function() {
jQuery_MST('.detail_open_view').on('click', function(){
jQuery_MST('.detail_open_desc').slideToggle( 'fast' );
});
});
2. 옵션 표시 부분 간격조정 및 폰트 크기 수정
스마트디자인 편집창에서 아래파일을 열어주신뒤 코드를 수정해주세요.
레이아웃 / 기본레이아웃 / layout / basic / tool / css / produtct.css
78번 79번 라인을 수정해주세요.
수정전
.xans-product-detail .infoArea .xans-product-option tr:first-child th,
.xans-product-detail .infoArea .xans-product-option .xans-product-fileoption th {padding: 7px 0 8px 0px; font-size: 11px!important; font-weight: 600!important;}
수정후
.xans-product-detail .infoArea .xans-product-option tr:first-child th,
.xans-product-detail .infoArea .xans-product-option .xans-product-fileoption th {padding: 7px 0 8px 0px; font-size: 12px!important; font-weight: 600!important;}
약 166번 라인 소스창 최하단에 아래 코드를 추가해주세요.
/*옵션표시스타일*/
#totalProducts { margin:0px;}
.xans-product-detail .infoArea .xans-product-option tr td {
padding: 7px 0 8px 15px!important;
}
관리자에게만 댓글 작성 권한이 있습니다.