-
modemlooper replied to the topic Alaxify Activity Stream in the forum How-to & Troubleshooting 11 years, 4 months ago
-
modemlooper replied to the topic Activity Search in the forum Ideas 11 years, 4 months ago
It’s there just no form.
/activity/?s=search_term
-
modemlooper replied to the topic [Resolved] Dynamic URL's for Buddypress User Profiles, Friends etc in the forum How-to & Troubleshooting 11 years, 4 months ago
How have you removed /members/? BuddyPress as a way to do that so links get changed automatically.
add_filter( 'bp_core_enable_root_profiles', '__return_true' );
-
modemlooper replied to the topic [Resolved] Dynamic URL's for Buddypress User Profiles, Friends etc in the forum How-to & Troubleshooting 11 years, 4 months ago
<?php echo bp_core_get_userlink( bp_loggedin_user_id() ); ?>
or
<a href="<?php echo bp_loggedin_user_domain(); ?>">Profile</a>
-
modemlooper replied to the topic How will BuddyPress forum look like? in the forum Miscellaneous 11 years, 4 months ago
No, This site uses bbPress.
Look at bpinspire.com for sites using BuddyPress
-
modemlooper replied to the topic How will BuddyPress forum look like? in the forum Miscellaneous 11 years, 4 months ago
bbPress is a forum add on. BuddyPress creates groups, activity streams and profiles.
-
modemlooper replied to the topic buddypress.org login broken in the forum Requests & Feedback 11 years, 4 months ago
These forums are tied into WP.org forums and there was a server snafu maybe that was issue.
-
modemlooper replied to the topic buddypress.org login broken in the forum Requests & Feedback 11 years, 4 months ago
some weird cache going on.
-
modemlooper replied to the topic Removing buddypress from wp_head in the forum Installing BuddyPress 11 years, 4 months ago
do you want to edit css or just get rid of it all together? You can add blank files. Adding these files will override bp’s files. If they are blank nothing gets loaded:
yourtheme/css/buddypress.css
yourtheme/js/buddypress.jsOr try and remove hook action:
remove_action(‘bp_enqueue_styles’);
remove_action(‘bp_enqueue_scripts’); -
modemlooper replied to the topic Should I Use WP or WPMU for social network? in the forum Installing BuddyPress 11 years, 4 months ago
If you want each BP user to have their own website/blog then use WPMU otherwise BP works with all the features on WP
-
modemlooper replied to the topic Custom Post Types and Buddypress Activiy/posting in the forum How-to & Troubleshooting 11 years, 4 months ago
Seems like a job for Gravity Forms plugin.
-
modemlooper replied to the topic [Resolved] How Do Install Locally on Xammp? in the forum Installing BuddyPress 11 years, 4 months ago
I suggest you use http://serverpress.com to easily install WordPress and then the plugin BuddyPress
-
modemlooper replied to the topic BP Album – dont work in the forum How-to & Troubleshooting 11 years, 4 months ago
I forked bp album https://wordpress.org/plugins/buddypics
-
modemlooper replied to the topic "simply" trying to filter the bp_ajax_querystring via Ajax in the forum Installing BuddyPress 11 years, 4 months ago
function special_bp_dtheme_ajax_querystring( $query_string, $object ) {
/* Now pass the querystring to override default values. */
$query_string .= '&type=active&action=active&include='. $list_of_members .'&page=1';return $query_string;
}function my_ajax() {
add_filter( 'bp_dtheme_ajax_querystring',…[Read more] -
modemlooper replied to the topic [Resolved] bp_core_fetch_avatar only appear on buddypress pages in the forum Creating & Extending 11 years, 4 months ago
<?php
$userid = bp_loggedin_user_id();
$avatarurl = bp_core_fetch_avatar( array( ‘item_id’ => $userid, ‘html’ => false ) );
echo $avatarurl;
?>rewrite the quote marks, if you cut and paste it can have funky formatting. If you want to display the avatar instead of getting link:
<?php
[Read more]
$userid = bp_loggedin_user_id();
echo bp_core… -
modemlooper replied to the topic [Resolved] bp_core_fetch_avatar only appear on buddypress pages in the forum Creating & Extending 11 years, 4 months ago
$id = //pass the id of a user
bp_core_fetch_avatar( array( ‘item_id’ => $id, ‘html’ => false ) );If you are not on a user page then you must tell it what id of the avatar to get.
bp_displayed_user_id
bp_loggedin_user_id -
modemlooper replied to the topic Failed migration of discussion forum to bbpress 2.3 in the forum How-to & Troubleshooting 11 years, 4 months ago
Do you want group forums? https://codex.buddypress.org/group-forums/
-
modemlooper replied to the topic Showing Link Preview in Activity Stream? in the forum Installing BuddyPress 11 years, 4 months ago
-
modemlooper replied to the topic BP 1.7+ and later – Theme Compatibility Plans in the forum Installing BuddyPress 11 years, 4 months ago
If you want different side bars then use a sidebar plugin. https://wordpress.org/plugins/custom-sidebars/
-
modemlooper replied to the topic RSS reader for each member/group in the forum Creating & Extending 11 years, 4 months ago
I’m creating a new RSS plugin to replace external blogs that will allow a group creator to attach RSS or a user to attach RSS to profile. Will be ready in a few weeks.
- Load More
@modemlooper
Active 10 months ago