-
@modemlooper replied to the forum topic Buddypres share it is not showing, could it be w3tc or add expire header? in the group How-To and Troubleshooting 13 years, 1 month ago
Don’t run cache on activity pages. Content is too dynamic.
-
@modemlooper replied to the forum topic Reversing the order of forum posts within a topic in the group How-To and Troubleshooting 13 years, 1 month ago
Pass the ‘order’ parameter as DESC.
if ( bp_has_forum_topic_posts( ‘order=DESC’ ) {
The forum topic posts loop can be found in this template:
/bp-default/groups/single/forum/topic.php -
@modemlooper replied to the forum topic fatal error in the group Installing BuddyPress 13 years, 1 month ago
activate bp default theme to test if its the theme. If it’s the theme, you may need to update to latest version.
-
@modemlooper replied to the forum topic displayed user is logged in in the group Creating & Extending 13 years, 1 month ago
EDIT:
`
function bp_is_displayed_user_online(){
$member_id = bp_displayed_user_id();
if (bp_has_members(‘user_id=0&type=online’)) :
while (bp_members()) : bp_the_member();
if($member_id == […] -
@modemlooper replied to the forum topic A list with all users (registered and unregistered) in the group How-To and Troubleshooting 13 years, 1 month ago
Only activated users show in members loop. If the list is for the admin to see you can view the user page in the admin. You could also use a plugin to auto activate users
Code snippet to auto activate
[…]
-
@modemlooper replied to the forum topic Changing slugs with bp-custom.php: No change! in the group How-To and Troubleshooting 13 years, 1 month ago
Google search add site:buddypress.org
-
@modemlooper replied to the forum topic When is New Buddypress out in the group Requests & Feedback 13 years, 1 month ago
Not for a few months. There will be betas first to work out the bugs
-
@modemlooper replied to the forum topic Changing slugs with bp-custom.php: No change! in the group How-To and Troubleshooting 13 years, 1 month ago
The BP-custom way was for older versions before BP used WP pages for directories
-
@modemlooper replied to the forum topic displayed user is logged in in the group Creating & Extending 13 years, 1 month ago
is_user_logged_in()
-
@modemlooper replied to the forum topic Changing slugs with bp-custom.php: No change! in the group How-To and Troubleshooting 13 years, 1 month ago
To change slugs you change the page name and URL for that page in the WordPress admin. To change all instances of the word you create a language file
-
@modemlooper replied to the forum topic Changing the Forum tab to another name in the group How-To and Troubleshooting 13 years, 1 month ago
Use BP extended settings plugin. Has option to rename tabs
-
@modemlooper replied to the forum topic Installing for Multisite – It's asking for pages for various directories……. in the group Installing BuddyPress 13 years, 1 month ago
BuddyPress only works on one blog, blog id 1. You need to create pages that will show directories for each BP component on that blog. You do not need to create these pages on every blog. BP will register content […]
-
@modemlooper replied to the forum topic Suitability of BuddyPress in the group Miscellaneous 13 years, 1 month ago
https://wordpress.org/extend/plugins/bp-group-reviews
This works like the plugin reviews on this site. Example: https://buddypress.org/community/groups/buddypress-xprofile-custom-fields-type/reviews/
You can […]
-
@modemlooper replied to the forum topic UPDATE! Needs testing in the group BP External Group Blogs 13 years, 1 month ago
There isn’t an updated version to work. This is a back burner plugin that I may work on in the future. Most of the time we developers create plugins for our own needs and then after that time it may never get […]
-
@modemlooper replied to the forum topic bp_profile_field_data( 'field= … doesn't work in the group How-To and Troubleshooting 13 years, 1 month ago
I’ll test it
-
@modemlooper replied to the forum topic bp_profile_field_data( 'field= … doesn't work in the group How-To and Troubleshooting 13 years, 1 month ago
Paste code your using
-
@modemlooper replied to the forum topic UPDATE! Needs testing in the group BP External Group Blogs 13 years, 1 month ago
The WordPress repo version is out dated.
-
@modemlooper replied to the forum topic Before Installing: WPTouch Pro in the group Installing BuddyPress 13 years, 1 month ago
I wouldn’t use the bleeding edge 1.7 it’s still got a bunch of work.
-
@modemlooper replied to the forum topic Before Installing: WPTouch Pro in the group Installing BuddyPress 13 years, 1 month ago
WP touch doesnt have the theme files to work with BuddyPress.
Options are to use a responsive theme, create your own custom solution or use https://wordpress.org/extend/plugins/buddypress-mobile
WP Touch […]
-
modemlooper replied to the topic [Resolved] how to redirect after login to 'my groups' in the forum How-to & Troubleshooting 13 years, 1 month ago
function bp_my_groups_redirect() {
setcookie('bp-groups-scope', 'personal');
return '/groups';
}
add_filter('login_redirect', 'bp_my_groups_redirect'); - Load More
@modemlooper
Active 3 months, 1 week ago