Hi ! This should be an easy one. How do I add links to custom fields in the registration form?
<a href="https://www.google.com.my">Google</a>
PLG_FIELDS_TERMS_ACCEPT_TERMS="I agree to the terms & conditions above"
//Replace with
PLG_FIELDS_TERMS_ACCEPT_TERMS="I have read and agree to the Privacy Policy"
<input type="checkbox" id="terms-<?php echo $inputName;?>" name="<?php echo $inputName;?>" data-field-terms-checkbox <?php if ($value) { ?>checked="checked"<?php } ?> /> <?php echo JText::_( 'PLG_FIELDS_TERMS_ACCEPT_TERMS' );?>
//Replace with
<input type="checkbox" id="terms-<?php echo $inputName;?>" name="<?php echo $inputName;?>" data-field-terms-checkbox <?php if ($value) { ?>checked="checked"<?php } ?> /> <a href="http://www.google.com"><?php echo JText::_( 'PLG_FIELDS_TERMS_ACCEPT_TERMS' );?></a>