I have Yii2 application which uses the webvimark/user-management
module to deal with Users. I've created additional model called UserProfile
which adds some additional functionality and fields. For those interested, I followed this guide:
https://github.com/webvimark/user-management/wiki/Profile-and-custom-registration
I got pretty much everything working, having a custom registration form created to work with the new profile fields. The only problem that I have is how to replace the original form included in the module without modifying it. In here, webvimark suggests to use theming to do so: https://github.com/webvimark/user-management/issues/10
How do I theme just that one file containing the form though? I wouldn't want to change the rest and all the examples of theming I can find overwrite a whole directory. Any suggestions?