-
Author
-
June 27, 2016 at 19:05 #127069alphateddyParticipant
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
June 28, 2016 at 19:45 #127242RaduModeratorHi,
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 solutionAttachments:
You must be logged in to view attached files.June 29, 2016 at 10:01 #127338alphateddyParticipantThis is the page of Membership pro. I mean the signup page
http://www.esportindustry.com/register/
– Marian
June 29, 2016 at 18:20 #127404RaduModeratorBy 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 solutionJune 29, 2016 at 18:28 #127406alphateddyParticipantHi 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
June 29, 2016 at 19:46 #127431RaduModeratorAs 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 solutionJune 29, 2016 at 21:34 #127482alphateddyParticipantOk thx, how to I get the sidebar and menu tto appear there?
June 30, 2016 at 18:01 #127553RaduModeratorHi,
Add this code to your child theme functions.php ( wp-content/themes/buddyapp-child/functions.php )
COPY CODEfunction 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 -
AuthorPosts
The forum ‘Bugs & Issues’ is closed to new topics and replies.