Background
I started developing a Magento Enterprise website that has a custom theme. When the custom theme was created, basic default templates were used, not standard enterprise templates, so the theme does not have any corporate functions.
I installed the Magento Enterprise installation for vanilla, which corresponds to the version number used on this site (1.11.1.0), and I slowly work through the difference between the two sites and add functionality back to one module at a time.
However, I came across an obstacle that the banner functionality works with, and therefore I am having problems trying to debug what is missing from the user theme so that they work correctly.
What i know
Functionality works great on my Vanilla Enterprise website.
There are no XML layout files for the banner module, which makes sense since they are dynamically created in the administration section, which allows you to choose which page / block you want to insert banner widgets.
Using a commerce error and looking at the compiled layout of the XML page, the nodes of the XML banner are definitely inserted, so they are not created programmatically (via PHP) inside other templates or blocks.
I looked right through the banner module and observers / events, but I donβt see anything that might be related to how the nodes are inserted.
It seems to be connected to the Enterprise CMS module.
I found links to banners in the FPC module, but FPC is not used on this site, and these methods did not suffer when FPC is disabled.
I checked twice and the module output is not disabled in Admin Advanced.
I am using the DesignFallbacks module with enterprise / default, and this did not help either.
I installed some banners in exactly the same way on the user site as on the enterprise website, but the banner nodes are not inserted in the compiled XML.
I searched on Google and Stack Overflow, but the information on Enterprise Banners is very limited, and I could only find talk about this section, and not how they function from the code level.
All this now leads to ...
What i would like to know
How / where XML banner nodes are embedded in the XML layout.