-
modemlooper replied to the topic BuddyMobile showing in desktop verion in the forum How-to & Troubleshooting 12 years ago
You need to name is the same as what is in your desktop theme folder.
https://codex.wordpress.org/Pages#Page_Templates
-
modemlooper replied to the topic [Resolved] Display BuddyPress components on WP Author page in the forum Creating & Extending 12 years ago
Post some code you are using so we can see what you are trying to do
-
modemlooper replied to the topic Buddypress Themes Missing in the forum Miscellaneous 12 years ago
-
modemlooper replied to the topic Buddypress Themes Missing in the forum Miscellaneous 12 years ago
You can find BuddyPress themes on the WordPress.org repo by using the search feature and choose the buddypress search filter
-
modemlooper replied to the topic How can I tell if my users have completed registration and activation process? in the forum How-to & Troubleshooting 12 years ago
If they do not show in the members list then they have not activated and logged in yet.
-
modemlooper replied to the topic What plugins to use for Buddypress to build an IMDB-like website? in the forum Creating & Extending 12 years ago
Plugin forums have been removed. This is no longer a place for support for third party plugins. legacy forums can be found on the front support page.
This issue with using plugins to create such a specific site as […] -
@modemlooper replied to the forum topic About: BuddyPress Profile Privacy-It’s not working [answered] in the group How-To and Troubleshooting 12 years ago
If its my plugin, read instructions. You need to edit template files
-
@modemlooper replied to the forum topic Create different pages with different parameters for bp_has_group() in the group Creating & Extending 12 years ago
-
@modemlooper replied to the forum topic Create different pages with different parameters for bp_has_group() in the group Creating & Extending 12 years ago
Use WordPress a page template and hard code a BuddyPress group loop in the page template. Create a WordPress page in the admin. You do the same thing when you created those pages when you install BuddyPress. […]
-
@modemlooper replied to the forum topic Guided Tour Plugin in the group Third Party Components & Plugins 12 years ago
This type of thing would have to be theme specific so i dont think you would see a plugin for this.
-
@modemlooper replied to the forum topic What plugins to use for Buddypress to build an IMDB-like website? in the group Creating & Extending 12 years ago
Anything can be acomplished given the skills. This would require custom code.
-
@modemlooper replied to the forum topic How to create custom group components, like on buddypress.org in the group How-To and Troubleshooting 12 years ago
Look through the BuddyPress code. The core components extend a class BP_Component. You extend this class to create your own components. In folder bp-groups you can see how the groups component is being created and […]
-
modemlooper replied to the topic Taking out Profile Sections in the forum Creating & Extending 12 years ago
My suggestion is meant to be a taxonomy. I think we need one landing page for User/Developer and then anything else is just taxonomy. Makes it easier to manage the backend of pages as you don’t really need to have […]
-
@modemlooper replied to the forum topic How to make Profile fields visible only to admins? in the group How-To and Troubleshooting 12 years ago
You can choose the my friends option to at least block all fields to a users friends. You can also look over @boone code to add your own visibility options. https://github.com/boonebgorges/bbg-custom-bp-field-visibility
-
@modemlooper replied to the forum topic What Exactly Is BuddyPress? What Do I Get If I Install It? in the group Requests & Feedback 12 years ago
Its not really a membership plugin. It turns your site into a social network where users can sign up get profiles, groups and discussion forums. There are many plugins that add additonal features.
-
@modemlooper replied to the forum topic How to make Profile fields visible only to admins? in the group How-To and Troubleshooting 12 years ago
Go into the wp-admin Users > Profile fields and change the visibility options to profiles fields
-
@modemlooper replied to the forum topic I'm working on the activity stream, need help! in the group Creating & Extending 12 years ago
look at the record activity function http://pastebin.com/kNqTrRzc
-
@modemlooper replied to the forum topic I'm working on the activity stream, need help! in the group Creating & Extending 12 years ago
`function my_friends_only_activity( $query ) {
$friends_id = bp_get_friend_ids( bp_loggedin_user_id() ) ;
$query = ‘&user_id=’ . $friends_id ;
return $query;
}
add_filter( […] -
@modemlooper replied to the forum topic I'm working on the activity stream, need help! in the group Creating & Extending 12 years ago
You get user id’s with code not manually.
bp_get_friend_ids( bp_loggedin_user_id() ) ;
-
@modemlooper replied to the forum topic I'm working on the activity stream, need help! in the group Creating & Extending 12 years ago
Not too difficult. You can filter activity stream by passing a comma seperated list of user id’s. just get logged in users friends id’s. read the codex on how to filter loops
- Load More
@modemlooper
Active 10 months ago