Question

I'm studying to get Magento FE certification and I've found some demo questions like this:

You want to create a new “screendesign” package based on the “default” package’s “default” theme. Which ONE of the following steps do you have to take?

A. Copy app/design/base to app/design/screendesign

B. Create an empty folder app/design/frontend/screendesign and copy app/design/frontend/default/default into it

C. Create skin/frontend/screendesign, then copy the CSS and images folders and their files from /skin/frontend/default/default/ to skin/frontend/screendesign/default

D. Inside app/design/frontend and skin/frontend, copy the folder “default” to the folder “custom”; then rename custom/default to custom/screendesign in both places

E. Create app/design/frontend/default/screendesign

The answer suggested is C, but I don't agree and I think is B because if you don't create at least the package folder, you'll get error when setting the package (folder not found). Am I wrong? thanks

Was it helpful?

Solution

The answer is definitely C.

If you choose B then that says:

B. Create an empty folder app/design/frontend/screendesign and copy app/design/frontend/default/default into it

That means you'd have app/design/frontend/screendesign/template and app/design/frontend/screendesign/layout.

The files would be in the wrong location.

What you would want is:

app/design/frontend/screendesign/default/template and app/design/frontend/screendesign/default/layout.

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top