Did this exacly and succeeded! Here's the tutorial
Exept: instead of Joomla registration I choose CB Registration. But registration test succeeded just fine. Form Registration: succesfull.
Stepping up: first i make a copy of form Registration and named it Registration1
Now I want to add extra self made fields in my CB registration form. So, in CB Field Manager I created a new field called Test3:
Type: text Field
Tab: About me...
Name: Test3 (was automatically altered to cb_Test3)
Title: Test3
In the form html, in between Confirm Password* and image verification I added:
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label">Test3*</label>
<input class="cf_inputbox required" maxlength="150" size="50" id="text_5" name="text_5" type="text">
</div>
<div class="clear">ย </div>
</div>
Testing the form leads to this result:
* Form passed first SPAM check OK
* Form passed the submissions limit (if enabled) OK
* Form passed the Image verification (if enabled) OK
* Form passed the server side validation (if enabled) OK
* Form passed the plugins step (if enabled) OK
* Emails data loaded OK
* Form passed all before email code evaluation OK
* Debug End
_POST: Array ( [text_0] => zonnet2 [text_1] => ggwg [text_2] => [email]lenard@zonnet.nl[/email] [text_3] => fiets [text_4] => fiets [text_5] => testvak3 [chrono_verification] => QY3SX [undefined] => Register [58feeb0bece941cc05764493e3295dc4] => 1 )
But the form does not arrive in email. What did I miss / do wrong? ๐
Thanks!