- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to adjust customer/account/create/ page
Hi,
I'm trying to find the way to add some text to the page where customers can create their account.
Our website is in Dutch and would like to add some eddictional information for the customer who is creating an account xxxxx.customer/account/create/ page
But I cannot find a file where I would be abel to add some text, is there anyone willing to point out where I will be able to add some text?
much appreciated, thank you in advance, regards
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: how to adjust customer/account/create/ page
Hi @RockMariska,
You can find the template file at below location.
vendor/magento/module-customer/view/frontend/templates/form/register.phtml
If you are using any custom theme then you can find the file in your theme or you need to override this file in your custom theme. for more info :
https://www.rakeshjesadiya.com/how-to-override-template-phtml-files-in-magento-2/
https://devdocs.magento.com/guides/v2.3/frontend-dev-guide/templates/template-override.html
You can also find any template file path using template path hints.
Enable
php bin/magento dev:template-hints:enable
Disable
php bin/magento dev:template-hints:disable
I hope it will help you!