Hello,
If you create a widget in the ACP then you get a new widget PHP file with an init() method and nice comments about how to override the default template name and location.
Admittedly, the comments are not explicit but as they are placed prior to the call to parent::init() there is a clear implication that the template should be specified BEFORE calling parent::init(). That's what I did and it does not work... Quick inspection of the Widget class shows that the only thing done in parent::init() is to set the default template so, obviously, the template must be specified AFTER the call to parent::init() if one wants to override the default template.
Thanks.
John
Recommended Comments
There are no comments to display.