Skip to main content

Default Profile Tab option

I would like my posts to be displayed by default when someone visits my profile at https://community.wpmanageninja.com/portal/u/jed

Default Profile Tab option

+1

Drive Zone

+1

Drive Zone

This could be an option to make default profile tab at your needs.

Jed Barish

Shahjahan Jewel ☝️

Hamza

add_action('fluent_community/portal_head', function() {
?>

.object_menu .fcom_profile_nav { display: flex; }

/ Set custom order /
.fcom_profile_posts {
order: 1;
}

.fcom_profile_spaces {
order: 2;
}

.fcom_profile_comments {
order: 3;
}
.fcom_profile_about {
order: 4;
}

<?php
});

Jed Barish

HamzaΒ insert them in the functions.php?

Drive Zone

HamzaΒ it changes order but not prefer order: 1 as default tab.

Drive Zone

HamzaΒ default tab snippet for improving your tab order snippet

add_filter('fluent_community/default_profile_tab_route', function ($default_route) {
// Example: This code sets the β€˜Posts’ tab as the default view.
// possible values: '', 'comments', 'spaces', 'posts'
// '' for default
return 'posts';
});