Yes, I will try! This is just an example.
First this is the url to my registration page:
http://www.signature-tunes.com/member-area/registerI took this part of it:
/member-area/register
and then went to JomSocial templates in my site's admin area. In there find the template that you have set as the default template and open it as if to modify the settings. You will see a drop-down menu called "select a file". Choose the
frontpage.guests.php file.
When this page is open look for the following code (If you are having the same problem that I had):
- Code: Select all
<div class="cGuest">
<div>
<p><?php echo JText::_('COM_COMMUNITY_HERO_PARAGRAPH'); ?></p>
<a href="#"> <?php echo JText::_('COM_COMMUNITY_JOIN_US_NOW'); ?> </a>
</div>
</div>
and replace the # with that part of your registration url that will get you to the registration form like this:
- Code: Select all
<div class="cGuest">
<div>
<p><?php echo JText::_('COM_COMMUNITY_HERO_PARAGRAPH'); ?></p>
<a href="/member-area/register"> <?php echo JText::_('COM_COMMUNITY_JOIN_US_NOW'); ?> </a>
</div>
</div>
I hope the attached image will help as well:
JomSocial-Template-Information.jpg
Let me know if you need any further assistance with this. Cheers!