Reputation: 4394
Hello I'm new to Joomla and I want to change the way an account is created (in Joomla 2.5):
What ways are there?
Upvotes: 3
Views: 17443
Reputation: 133
you can if you install SEBLOD, it's a content constructor that can modify article form, user registration form and much more.
It will help you with almost everything you need, but to call other functions or make other requests you will nedd to digg a little more into Joomla registration.php
Upvotes: 0
Reputation: 366
You can change the settings from the component directory of the template in the PHP file.
Upvotes: 1
Reputation: 8178
Had an earlier answer for an earlier version that didn't apply, but found this tutorial to get myself up to speed. it lists all the files, etc. that you need to make changes to, but doesn't mention your email requirement. To do that, you'll likely have to look at function register($temp)
in components\com_users\models\registration.php
Upvotes: 3