how would it be possible to create on every registration in Joomla a customized folder for every user in the images-folder? The userid should be the foldername...(images/USERID)
Where could I change the code and what should I insert?
Thanks a lot
how would it be possible to create on every registration in Joomla a customized folder for every user in the images-folder? The userid should be the foldername...(images/USERID)
Where could I change the code and what should I insert?
Thanks a lot
Copyright © 2021 Jogjafile Inc.
You have to create a Profile Plugin for this task,
and use the
onUserAfterSavefor the folder creation section. the basic profile plugin documentation can be found here.Another option is just edit the core file, but its not recommended bcoz due to Joomla update it may lost.
If you plan to edit core file just check your model file inside
components/com_users/models/registration.phpand taskregister()in this function a send mail code is there just add your custom codes before that.Hope its helps..