Hi, I would like to unregister the 'New Page' and 'New Sub Page' from my content creation wizards I know I can do:
from cms.wizards.wizard_pool import wizard_pool from cms.cms_wizards import cms_page_wizard, cms_subpage_wizard wizard_pool.unregister(cms_page_wizard) wizard_pool.unregister(cms_subpage_wizard) This works when I put it in a cms_wizards.py file inside one of my applications. But how do I do this if I don't want to put this code inside my application? Which file can I put the code in, to be executed? Thank you in advance! -- Message URL: https://groups.google.com/d/msg/django-cms-developers/topic-id/message-id Unsubscribe: send a message to [email protected] --- You received this message because you are subscribed to the Google Groups "django CMS developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web, visit https://groups.google.com/d/msgid/django-cms-developers/26d48649-e21b-43e3-a9af-288e4fa789f7%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
