By Klaus Zettler on Tuesday, 06 December 2022
Posted in General Issues
Replies 3
Likes 0
Views 596
Votes 0
I want to do 2 things:
1) Change the required fields in the registration form for a new user.
2) Add a new field for the registration form

Do I have to use the XML Custom details or can I use the joomla core?
Hey Klaus,

1) Change the required fields in the registration form for a new user.
Let me know which field you want to change, so I'll assist you.

2) Add a new field for the registration form
If you want to ask for new fields during registration then you need to use User custom details, which is used to ask the additional details from the customer.
Refer this link for more details: https://stackideas.com/docs/payplans/administrators/users/custom-details

Let us know if you will have any queries.
·
Tuesday, 06 December 2022 10:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Let me know which field you want to change, so I'll assist you.

I want to delete the "state" field because we don't really have states in Austria and we don't use it for adresses in Austria, Germany or Switzerland. ZIP Code and City is enough.
·
Tuesday, 06 December 2022 15:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Kluas,

To remove state field from PayPlans Inbuilt registration, you can do it with the template overriding.
For this you need to do the changes here

1. Go to file : root\components\com_payplans\themes\wireframe\registration\auto\default.php, near line no. 67. find this code.

<div>
<?php echo $this->html('floatLabel.text', 'COM_PP_CHECKOUT_STATE', 'state', $data['state']); ?>
</div>


Remove this code.

Do the changes with template overriding so changes will not lost.
Refer this: https://stackideas.com/docs/payplans/administrators/customization/template-override

Let us know if you still have any issue.
·
Tuesday, 06 December 2022 15:32
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post