When will frisco buddypress theme will be updated for more feature and new user interface?
New version of the theme coming when BuddyPress 1.6 is released.
Also profile does not fit to the screen properly when buddypress follower plugin is installed? Any template modification for it?
The followers plugin uses its own template files. So you’d need to add a couple divs and rearrange a few things to match the Frisco theme layout.
I’ve made this easy by making the changes for you and uploading to pastebin.
Go to this directory, wp-content/plugins/buddypress-followers/_inc/templates/members/single/
Then open up the two files, followers.php
and following.php
.
Replace the existing file content with the following.
followers.php
… replace with https://pastebin.com/t9mKrWS1
following.php
… replace with https://pastebin.com/h3CYx1VC
That should fix the layout a bit. You might need to add the following to your stylesheet to push down the pagination.
body.followers #item-body div.pagination,
body.following #item-body div.pagination {
margin-top: 0;
}
This isn’t ideal because you’ll have to do something similar when a new version of the plugin is released. So hopefully this plugin and other plugins will use the built-in plugin support template files in the theme for BuddyPress 1.6 once it’s out.
Also how to adjust the postion of various tabs on profile page so that they all come in one line i.e activity,followers,following,friends,settings and invites tabs to fit in one line and adjust it’s position
If you are using plugins that add extra tabs to the profiles and those extra tabs are spilling over into a second row, some basic CSS should be all you need.
div.item-list-tabs ul li a,
div.item-list-tabs ul li span {
padding: 5px 6px;
}
Adjust the 6px
to a lower value if you need to. The theme has 10px
left/right padding for that element by default.