I need to remove default Magento checkout and add custom one.Problem is Custom extension template is not loading.Log doesn’t show any errors.I have attached screenshot http://skit.ch/nwpi
Code is here https://gist.github.com/3636029
Two questions here,
Blocks are not rendering?
Even though I’ve unset "checkout.onepage" block,when I dump entire layout,it shows the default checkout layout code.Is this normal behavior?
The problem lies in your controller:
$this->getLayout()->getBlock('content')->unsetChildren('checkout.onepage');See:
So your code should be, either:
$this->getLayout()->getBlock('checkout.onepage')->unsetChildren();OR
$this->getLayout()->getBlock('content')->unsetChild('checkout.onepage');