Hi,
I have found some information on this subject in several topics on your old forum but I had no success in implementing everything I need.
We have the BuddyBoss theme but we created a staging site and are in the process of switching back to Themeco Pro because the BuddyBoss theme is just way too slow and we can make so much more customizations with Themeco Pro. It is much faster as well!
Now, we are just using the BuddyBoss Platform plugin for extra features, however, some features need some serious restyling because some elements are completely unusable so I have some work cut out for me. If you guys added theme support for the BuddyBoss Platform plugin that would be much appreciated!
Onto the issue, I was able to add the login, logout, account, and log-out links in the header using HTML but had a few questions.
- How can I retrieve the URL that will lead to a user’s profile? /profile and /account do not work.
- I tried to add CSS to hide the register and login links for logged-on users but it didn’t work either.
The HTML I used:
<a href="/login/" class="wp-login-url"><i class="x-icon-key" data-x-icon=""></i>Log In</a> <a href="/register/" class="wp-register-url"><i class="x-icon-pencil-square-o" data-x-icon=""></i> Register </a> <a href="/login.php?action=logout" class="wp-logout-url"><i class="x-icon-sign-out" data-x-icon=""></i> Log Out </a> <a href="/account/" class="wp-account-url"><i class="x-icon-user" data-x-icon=""></i> Account </a>
And the CSS used:
.wp-account-url {
display: none;
}
.logged-in .wp-account-url {
display: block;
}
Best regards,
Josh