Forum Replies Created
-
Author
-
December 7, 2015 at 18:01 in reply to: Exchange activity page with profile page and put activity stream as last tab #91689jazzbuzzParticipant
I did the trick:
Add this to function.php:
function bbg_change_profile_tab_order() {
global $bp;$bp->bp_nav[‘profile’][‘position’] = 10;
$bp->bp_nav[‘activity’][‘position’] = 60;
$bp->bp_nav[‘friends’][‘position’] = 40;
$bp->bp_nav[‘notifications’][‘position’] = 20;
$bp->bp_nav[‘settings’][‘position’] = 50;
$bp->bp_nav[‘messages’][‘position’] = 30;
}
add_action(‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );And put this to bp-custom.php (if not existing, add a new file to wp-content/plugins/
<?php
/* define the default Profile component */
define(“BP_DEFAULT_COMPONENT”,”profile”);// Now when you click on a user name link, You will land on User’s profile not user’s activity page
?>jazzbuzzParticipantHi Laura,
it is not a cacheing issue.. It happens over and over again…
Couldnt figure it out until now.
Nobody else has that problem?
jazzbuzzParticipantHi Radu,
well this is not a permanent solution for me so I am really looking forward to get the issue fixed soon by your programmers. 🙂
Thank you
jazzbuzzParticipantHi there agein,
I think I found what caused the problem. I deleted the alert element, that I had put with visual composer on the page and excahnged it by a normal text link. Now everything is running how it should. Please have a look into this – something is not working properly with that element.
Thank you so much!
-
AuthorPosts