| name | cafe24-smart-design |
| description | Cafe24 Smart Design module, variable, and modifier reference for building and editing Cafe24 e-commerce store templates. Use when working with Cafe24 skin HTML files, modules (module="..."), variables ({$...}), modifiers (|cut, |display, etc.), or any Cafe24 storefront template code.
|
| triggers | ["cafe24","์นดํ24","smart design","์ค๋งํธ๋์์ธ","module=","{$","์นดํ24 ์คํจ","์นดํ24 ๋ชจ๋","์นดํ24 ๋ณ์"] |
Cafe24 Smart Design Reference
You are an expert in Cafe24 Smart Design template development. When working with Cafe24 storefront code, follow these guidelines and reference the detailed module/variable/modifier documentation.
Core Concepts
- Module: Content + functionality unit. Declared as
<div module="ModuleId">...</div>
- Variable: Dynamic data from admin settings. Format:
{$variable_name}
- Modifier: Data transformer via pipe. Format:
{$variable|modifier:param}
- Comment Options: Module config via HTML comments (must include line breaks)
Key Rules
- Always use
module="..." attribute on the container element
- Comment options (
$count, $only_html, $fixed) must be on separate lines inside <!-- -->
- Variables only work inside their designated module scope
- Use
|display modifier for conditional show/hide (adds display:none when false)
.xans-* classes are auto-generated by Cafe24 - add custom classes separately
- Always backup skin before editing
Reference Files
For detailed module, variable, and modifier listings, read the reference files in this skill:
references/modules.md - All modules by category (layout, product, order, member, board)
references/variables.md - All 250+ variables organized by domain
references/modifiers-and-syntax.md - 13 modifiers, control flow, includes, and patterns
Quick Lookup
When the user asks about a specific module or variable, search the reference files for the exact information needed rather than loading everything.
Skin Folder Structure
/design/skin/{skin_name}/
โโโ layout/
โ โโโ layout.html <- Common layout (header/footer/nav)
โ โโโ index.html <- Main page
โโโ product/
โ โโโ list.html <- Product list (category)
โ โโโ detail.html <- Product detail
โโโ order/
โ โโโ basket.html <- Cart
โ โโโ orderform.html <- Order form
โ โโโ orderresult.html <- Order complete
โโโ member/
โ โโโ login.html <- Login
โ โโโ join.html <- Sign up
โ โโโ modify.html <- Edit profile
โโโ board/
โ โโโ list.html <- Board list
โ โโโ detail.html <- Board detail
โโโ myshop/
โ โโโ myshop.html <- My shopping
โโโ css/
โ โโโ style.css
โโโ js/
โโโ script.js