If you have a plugin and it is enabled, it’s view files overrides the default views.
So you have to disable the plugin when you do not want it to take effect
No, that’s not how it works. I’ve sucessfully had it working with the CakeDC users plugin, overwriting it’s templates yet still using the plugin functionality.
Turns out in the plugin a theme is used. So in that plugin model/controller the email is set to use a layout like this:
...->layout("PluginName.new");
If the plugin writer wrote instead:
...->layout("new");
I think that then would allow me to just drop in my own templates to override at main App level. I will try this… and suggest to plugin Author to make the change…