Hi,
I've already edited registration_bootstrap this way:
defined('_JEXEC') or die('Restricted access');
?><fieldset class="form-horizontal">
<textarea rows="4" cols="25" id="privacypolicy" class="inputbox" readonly=""><?php echo JText::_( 'PRIVACY_POLICY_TEXT' ); ?></textarea>
<hr>
<textarea rows="4" cols="25" id="termsconditions" class="inputbox" readonly=""><?php echo JText::_( 'TERMS_CONDITIONS_TEXT' ); ?></textarea>
<hr><br />
<p><?php echo JText::_( 'CONSENT_PRIVACY_TEXT' ); ?></p>
<br />
This way I can show 2 text area fields, one for privacy policy and another one for terms and conditions. After those 2 text areas I would like to show 2 radio fields (yes or not) to accept those policy and terms. I've created 2 radio fields in user Tab. But those are shown after the core registration fields.
How can I show those 2 custom radio fields soon after the 2 texarea I've created in the view and put them all the the bottom of the registration form, also after the address fields?