Cherven
Cherven

Reputation: 1131

How to clean/erase structural block in Magento CE?

I'm new to Magento :)

is it possible to clean structural block and start adding content blocks from scratch?

for example in my_package/my_theme/layout/local.xml I would like to have something like this.

<?xml version="1.0"?>
<layout version="0.1.0">

    <default>
        <remove name="header" />
        <reference name="header">
            <block type="customer/form_register" name="customer_form_register" template="customer/form/register.phtml"/>
        </reference>
    </default>
</layout>

Upvotes: 0

Views: 29

Answers (1)

Rob
Rob

Reputation: 953

The default Magento blank theme would be worthwhile to start working off of, I built this site based from the blank theme. http://frea.licenseschool.com/ This site almost does not resemble Magento in any way.
Then include any overrides you need to the base theme in your own package and theme.
Base theme includes very little and can work quite well to build from.

Upvotes: 1

Related Questions