By Brett Buchanan on Saturday, 28 June 2014
Posted in General Issues
Replies 3
Likes 0
Views 596
Votes 0
Hi ! This should be an easy one. How do I add links to custom fields in the registration form?
Hello Brett Buchanan,

I am really sorry for the delay of this reply as it is a weekend for us here.
If I'm not getting wrong your meaning, you can create a link from your backend > EasySocial > profile type > select your profile type > custom field tab > click and drag HTML in your form, then put this html content
<a href="https://www.google.com.my">Google</a>

Check my screenshot below. Hope this help.
·
Saturday, 28 June 2014 14:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi! This can wait until Monday if you want. No rush. I have attached an image of what I need. Basically, I need to know how to add an anchor text link from the word "Privacy Policy" within the Terms field. I also would like to change the default content next to the check box to read something different, but I don't see where to make that change. Image attached.
·
Sunday, 29 June 2014 04:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Brett Buchanan,

Thanks for understand
Let me analysis in your requirement here :
-> You would like to change this word I agree to the terms & conditions above to I have read and agree to the Privacy Policy and make this to be link to your privacy policy page?
If yes, you can modify the file from JoomlaFolder\language\en-GB\en-GB.com_easysocial.ini

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"


Then go to this file
JoomlaFolder\media\com_easysocial\apps\fields\user\terms\themes\default\event.php

<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>


But unfortunately that was not possible to make the "Privacy Policy" text become link from the term and condition content.

Hope this help.
·
Sunday, 29 June 2014 13:58
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post