How to handle templates of plugins

/user/plugins/login/templates/login.html.twig

I want to customize this file. Where should I place a copy of it, to be save from upgrade overrides? Cannot find anything about how to handle templates of plugins.

@Spica, You can override templates from plugins by copying the template from the plugin into your theme using the exact same folder hierarchy. Like:

/user/plugins/login/templates/login.html.twig --> /users/themes/my-theme/templates/login.html.twig

2 Likes