How do I add a help link into the register page?

Requested and Answered by Carnuke on 2005/2/13 14:53:48

How do I add a help link into the register page?

Open register.php At the bottom of the page you'll see

include 'header.php';
    
//OpenTable();
    
include 'include/registerform.php';
    
$reg_form->display();
    
//CloseTable();
    
include 'footer.php';
Add a line before include/registerform.php
echo "<div>If you are having problems with registering please visit <a href='"XOOPS_URL ."/modules/smartfaq/index.php'>this FAQ link</a></div><br />";

include 
'include/registerform.php';
Of course, change the writing and link to whatever you want Rowd

This Q&A was found on XOOPS Web Application System : https://xoops.org/modules/smartfaq/faq.php?faqid=395