Andrei F
Andrei F

Reputation: 4394

Joomla 2.5 - Modify registration form and logic

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?

Upvotes: 3

Views: 17443

Answers (3)

user2419708
user2419708

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

N Khan
N Khan

Reputation: 366

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

Upvotes: 1

GDP
GDP

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

Related Questions