문제

I have been trying to install a theme which has the following folder structure to magento community installation but I never get it to work:

theme
├── app
│   ├── code
│   │   └── ...
│   ├── design
│   │   ├── adminhtml
│   │   │   └── default
│   │   └── frontend
│   │       ├── base
│   │       ├── default
│   │       └── flatshop
│   ├── etc
│   │   └── modules
│   │       └── ...
│   └── locale
│       └── ...
├── js
│   ├── ...
├── lib
│   └── ...
├── media
│   └── ...
└── skin
    ├── adminhtml
    │   └── default
    │       └── flatshop
    └── frontend
        ├── base
        │   └── default
        ├── default
        │   └── default
        └── flatshop
            └── default

What should I copy to where in my magento installation? It’s for magento community 1.8.0.0

도움이 되었습니까?

해결책

The "theme" actually looks like it's a theme and a module. (I'm assuming the ... is a stand in for a huge list of files.

Your theme's folder structure mirrors a Magento folder structure. If you look at your Magento system you'll see it has a

app/code/...
app/design/frontend

While the author of the theme is the only one who can tell you how to install it, it's a good bet you'll just want to copy the files from your archive into the same folder locations in your Magento system. The OS X ditto command does this well.

다른 팁

goto System =>Configuration=>Design settings

add flatshop instead of default on package name area.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top