Open join.php and not popup box on splash

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

Quote · 13 Jan 2016

 

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

 Hi can you attach a screenshot?

Thank you for sharing

Quote · 13 Jan 2016

Hi The Music Vibe

 

Please find attached screen shot

 

Gew

login-join.jpg · 321K · 516 views
Quote · 13 Jan 2016

Thank you

Quote · 13 Jan 2016
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.