If like me you would like to add information to the side of the join up page, the pop up features does not allow this, so I wanted to go back to the old way of having a sign up page.
To do this first open /templates/base/splash.html. Now change the lines in red from
_content__
<script type="text/javascript" language="javascript">
$('.bx-splash .bx-btn-sa-join').bind('click', function() {
showPopupJoinForm();
return false;
});
$('.bx-splash .bx-btn-sa-login').bind('click', function() {
showPopupLoginForm();
return false;
});
</script>
to
_content__
<script type="text/javascript" language="javascript">
$('.bx-splash .bx-btn-sa-join').bind('click', function() {
window.location.href = '/join.php';
return false;
});
$('.bx-splash .bx-btn-sa-login').bind('click', function() {
window.location.href = '/join.php';
return false;
});
</script>
Now you can use the join.php page to sign up members and not have the pop up box.
Gew