3

Hello I'm new to Joomla and I want to change the way an account is created (in Joomla 2.5):

  1. Change the registation form (remove one or two fields)
  2. Change the registration logic: I want to add more stuff in the sent email (and a pdf attachment) and also i want to call some other functions (or make extra requests), analyse the result and then return the response to the client.

What ways are there?

Andrei F
  • 4,205
  • 9
  • 35
  • 66

3 Answers3

3

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

GDP
  • 8,109
  • 6
  • 45
  • 82
  • thank you. One thing I don't understand is how can I add a drop down list were it's values are selected from a specific table – themhz Jun 28 '13 at 02:04
1

You can change the settings from the component directory of the template in the PHP file.

N Khan
  • 366
  • 1
  • 6
  • 15
0

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

user2419708
  • 133
  • 1
  • 1
  • 5