Help Center
카페24 소식
[스마트디자인] 표시항목관리 설정 업데이트
2012-05-23
안녕하세요, 카페24 운영도우미 입니다.
쇼핑몰 상품 상세페이지의 상세정보를 설정하는 부분으로
해당부분이 변수로 처리되지 않아 직접 순서 설정을 할 수 없던 부분을
운영자분들이 직접 순서를 정할 수 있도록 html 코드가 추가 되었습니다.
자세한 내용은 아래를 참조해 주세요.
편집창에서 '상품 > 상품상세 (/product/detail.html)' 파일에
아래와 간치 파란색 소스를 추가해주시면 됩니다.
<tr class="cyworld {$cyworld_scrap_display|display}"> <th scope="row">싸이월드 스크랩</th> <td> <a href="#none" onclick="{$action_cyworld_scrap}"><img src="{$cyworld_scrap_button}" alt="싸이월드 스크랩" /></a> <img src='{$cyworld_info_button}' alt="" onmouseover="{$action_info_mouseover}" onmouseout="{$action_info_mouseout}" /> <!-- 싸이월드 스크랩 도움말 레이어 --> ...... </td> </tr>
<tr class="{$prd_price_org_display|display}"> <th scope="row">상품가</th> <td>{$prd_price_org}</td> </tr> <tr class="{$prd_price_tax_display|display}"> <th scope="row">세액</th> <td>{$prd_price_tax}</td> </tr> <tr class="{$product_buy_display|display}"> <th scope="row">공급원가</th> <td>{$product_buy}</td> </tr> <tr class="{$prd_brand_display|display}"> <th scope="row">브랜드</th> <td>{$prd_brand}</td> </tr> <tr class="{$prd_model_display|display}"> <th scope="row">모델</th> <td>{$prd_model}</td> </tr> <tr class="{$supplier_id_display|display}"> <th scope="row">공급사</th> <td>{$supplier_id}</td> </tr> <tr class="{$ma_product_code_display|display}"> <th scope="row">자체상품코드</th> <td>{$ma_product_code}</td> </tr> <tr class="{$summary_desc_display|display}"> <th scope="row">상품요약정보</th> <td>{$summary_desc}</td> </tr> <tr class="{$simple_desc_display|display}"> <th scope="row">상품간략설명</th> <td>{$simple_desc}</td> </tr>
</tbody>
|