Hi there! While creating site using Grav CMS, I had to make some changes to .twig templates of some form's fields. So, for beginning I just changed some .twig files, for example
/user/plugins/form/templates/forms/fields/checkbox/checkbox.html.twig
and
/user/plugins/form/templates/forms/fields/select/select.html.twig
Of cause, all my edits just were overwritten and lost during first attempt to update Grav and I've got the sabe basic versions that I've started from.
Ok, so I created special folders that were not exist before, and placed my templates there:
/user/plugins/form/templates/forms/fields/checkbox_special/checkbox_special.html.twig
and
/user/plugins/form/templates/forms/fields/select_special/select_special.html.twig
I thought, that as long as these folders are not native to plugin, they will stay intact during next update.
It seems that I was wrong, and while next update, these folders were again just wiped out, so my special fields just gone from form page.
So I have one very specific question: where should I place these twig templates, so that they keep on working and wouldn't be wiped out again on next update??
Please, note, I don't want to override WHOLE plugin, just a couple of templates for couple specific form fields.
Thanks in advance!