This topic has 7 replies, 2 voices, and was last updated 8 years by Radu.

  • Author
  • #127069
     alphateddy
    Participant

    Hello team,

     

    I have another problem, that I am not sure is caused by the theme or by any other wordpress setting. I cannot get the registration site to have the them design

     

    http://www.esportindustry.com/registration/

    This site is assigend to the buddypress component and it has Default Template selected in the page properties. Do you have any idea what the problem could be? I think it worked once, but whatever I do, I cannot get it right.

    Thanks for any help!

     

    – Marian

    #127242
     Radu
    Moderator

    Hi,

    See the attached screenshot this is how it looks on mine

    I saw the theme design…

    What’s the problem more exactly ?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    #127338
     alphateddy
    Participant

    This is the page of Membership pro. I mean the signup page

    http://www.esportindustry.com/register/

    – Marian

    #127404
     Radu
    Moderator

    By following the link that you have provided i’m redirected here : http://www.esportindustry.com/protected-content/?redirect_to=http%3A%2F%2Fwww.esportindustry.com%2Fregister%2F and the page content is blank

    How can i view your page with the issue ?

    Why the register page will be restricted to public access, how a user can register if the register page is protected for logged in users ? odd

    If you want to have community private, de-activate that plugin “protected content” and use the feature of private website from the theme

    Go to wp-admin -> appearance -> theme options -> private community -> Pages exceptions -> select login,register,activate

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #127406
     alphateddy
    Participant

    Hi Radu,

    my bad. The site is going through constant changes during development and I set a wrong option. The page provided should be free to be clicked now, but still has no template.

    – Marian

    #127431
     Radu
    Moderator

    As you can see your register page it looks like the original format : http://seventhqueen.com/themes/buddyapp/demo/register/

    Where is the problem ? this is the default template for login/register pages

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #127482
     alphateddy
    Participant

    Ok thx, how to I get the sidebar and menu tto appear there?

    #127553
     Radu
    Moderator

    Hi,

    Add this code to your child theme functions.php ( wp-content/themes/buddyapp-child/functions.php )

    COPY CODE
    
    function add_header_sidebar_register_page () {
    
        if (bp_is_register_page() || bp_is_activation_page()) {
            /* remove sidemenu */
            add_action('kleo_after_body', 'kleo_show_side_menu', 99);
    
            /* remove header */
            add_action('kleo_header', 'kleo_show_header', 99);
        }
    
    }
    
    function init_add_header_sidebar_register_page (){
    
        add_header_sidebar_register_page();
    
    }
    
    add_action('init', 'init_add_header_sidebar_register_page');
    

    Add this css to child theme ( wp-content/themes/buddyapp-child/style.css )

    COPY CODE
    
    @media(min-width:990px) {
        .registration.register #buddypress.kleo-login-wrap {
        margin-left: 250px;
    }}
    

    That’s all

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
Viewing 8 posts - 1 through 8 (of 8 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?