views:

168

answers:

1

Hi all,

Is it somehow possible when i add a category in my magento store, it inherits the settings of the parent category?

// Roland

+1  A: 

By default, no. However, you could probably write a module relatively easy which would observe an event (probably called catalog_category_before_save) and it would copy the data from the parent category before saving it. Some properties obviously must be unique so you'd have to predetermine which ones you want to copy.

See this wiki article for how to create modules that observe events: Event-Observer Method
See this pdf for a list of events: Magento Events Cheat Sheet

ColinM
Proberly the way to go indeed. Thanks for the useful links.
Roland Franssen