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
+1
This could be an option to make default profile tab at your needs.
Shahjahan JewelΒ βοΈ
add_action('fluent_community/portal_head', function() {
?>
/ Set custom order /
.fcom_profile_posts {
order: 1;
}
.fcom_profile_spaces {
order: 2;
}
.fcom_profile_comments {
order: 3;
}
.fcom_profile_about {
order: 4;
}
<?php
});
HamzaΒ insert them in the functions.php?
HamzaΒ it changes order but not prefer order: 1 as default tab.
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';
});
