Re: Profile edit URL
You mean to make it show on every page?
This is the code located in logged-in.php that’s being called:
<p id=”inloggen”>
- <?php printf(__(‘Fawaka, %1$s’), bb_get_profile_link(bb_get_current_user_info( ‘name’ )));?>
- <?php bb_admin_link( ‘before= ‘ );?>
- <?php bb_logout_link(); ?>
</p>
This is what I have in my header.php
<div id=”inloggen”>
<?php if ( !in_array( bb_get_location(), array( ‘login-page’, ‘register-page’ ) ) ) login_form(); ?>
<?php if ( bb_is_profile() ) ; ?>
</div>
However, if you are on the frontpage (/index.php) or any other page, apart from profile.php
you don’t see the “edit” link.
Got?