Search Results for 'buddypress'
-
AuthorSearch Results
-
January 3, 2011 at 8:55 am #101744
In reply to: Remove visit random member/group
Hugo Ashmore
ParticipantNo it’s not removal of lines as this is a function call.
Allways give the codex a quick check to see if there’s any help there, you want this page:
https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/And you need to be using remove_action() filter
There is a list of the add_action links on the page.
Add the remove_action to your functions.php in child theme.
January 3, 2011 at 8:38 am #101743Hugo Ashmore
ParticipantThis is something that is expressed from time to time i.e “More friendly interface” but it’s one of those things that slightly puzzles me again this is WP and the method of running it is the dashboard and that shouldn’t be a barrier for people really. There are however a few front end posting plugins which essentially drag the dashboard create post page/function to the frontend of a site that may make things a little simpler for users, but not sure on user blogs whether it’s easy or possible to then further abstract or hide the dashboard.
January 3, 2011 at 6:35 am #101740Virtuali
Participant1st. This issue is not being caused by buddypress.
There is something wrong with the <div you added, did you close the <div?
did you recently change anything to the site layout, or install any plugins?
January 3, 2011 at 6:25 am #101739In reply to: BP Sections?
January 3, 2011 at 5:52 am #101737In reply to: BP Sections?
@mercime
Participant@nahummadrid this would help with directing user to his/her site https://wordpress.org/extend/plugins/primary-blog-switcher-for-superadmins/
January 3, 2011 at 3:43 am #101731In reply to: “My Favorites” Plugin
justbishop
Member@ddgdaily, I’m not seeing a “most favorited” list anywhere on your site? Is all of that code you pastebinned just the stuff to add the *ability* to favorite a post, because I already have that up and running. I’m just looking for a way to keep a top 5 (or whatever number) list of the posts that have been favorited the most times, and display that in my main site’s sidebar
January 3, 2011 at 3:18 am #101730In reply to: Support Spam
skippybosco
Member@JJJ: First off, thanks.
Secondly, is the thought to hook into Akismet for the various actions within Buddypress? Wonder if this is served best by making the existing Akismet plugin Buddypress aware since the same effort needs to happen with standalone bbPress, etc.
January 3, 2011 at 2:57 am #101729life2000
Participant@hnia: Yes. You are absolutely right. The dashboard tab does not show up for regular subscribers. Sorry, I kept getting it because I was signed in as super admin. Problem solved

The only remaining issue is that when I start letting my users sign up for their site/blog, they will have access to wordpress dashboard. I really would like to offer them a more user friendly interface like buddypress’s front end; color wise, etc.. But that’s a whole other issue. For now, I am happy to have this solved

Thanks so much hnia and everyone else

VidaJanuary 3, 2011 at 2:42 am #101728Mouchoirs
MemberI like the widget you recommended above. I’m wondering if you know anything about pagelines plaform. I was thinking, if it offers full buddypress functionality, I could utilize the registration widget along with the “hide primary bar” feature in pagelines. This would make the widget available on only the pages I desire.
If I did this, do you know if there’s a way I can make every page of buddypress invisible to non-logged-in users? I could then simply have the registration and log in page visible to non-users. I’m currently using a privacy widget to hide all pages except login from non-logged-in users. However, I don’t see any way to select specific buddypress pages to choose to make private.
Thanks again so much for your time.
January 3, 2011 at 2:03 am #101727José M. Villar
ParticipantHave you tried this http://buddydev.com/plugins/bp-wire/ by @sbrajesh ?
January 3, 2011 at 1:59 am #101726In reply to: BP Sections?
Nahum
Participant@PiManIII i’ve not seen a universal login plugin or hack like this. I’m waiting on something myself where it’s like gravatar, one universal member login system for all my different bp sites, er what you are calling sections essentially. So anyone registering on any site, can go to another site and be able to login and not have to register again.
January 3, 2011 at 1:54 am #101725In reply to: Rate members
Nahum
Participant@ultimateuser i guess the guy who invented bp-group-reviews plugin would be a start.
January 3, 2011 at 1:53 am #101724In reply to: Buddypress Followers for Just Blog Stuff
Nahum
ParticipantQuick Note: Filter doesn’t work on BP Followers when you make selection in the activity from the Following tab.
So…that’s that. If I can cut into a hook and only return Blog Posts, Blog Comments…that would work.
January 3, 2011 at 1:52 am #101723January 3, 2011 at 1:35 am #101722Mouchoirs
MemberThanks to both of your for your prompt replies! I’m going to work with the widget and idea you suggested above. I hope you won’t mind if I post back here with my results and further feedback.
January 3, 2011 at 1:20 am #101721In reply to: Buddypress Followers for Just Blog Stuff
Nahum
Participant`function bp_follow_add_listing_follow_button_blogs() {
global $bp, $members_template;if ( $members_template->member->id == $bp->loggedin_user->id || !is_user_logged_in() )
return false;if ( !$members_template->member->is_following ) { ?>
<a href="member->id,$members_template->member->user_nicename, $members_template->member->user_login ) . $bp->follow->followers->slug . ‘/start/’,
‘start_following’ ) ?>” class=”follow” id=”follow-member->id ?>”><?php printf( __( 'Follow %s' ),
bp_get_user_firstname( $members_template->member->fullname ) ) ?>
<?php
} else { ?><a href="member->id,$members_template->member->user_nicename, $members_template->member->user_login ) . $bp->follow->followers->slug . ‘/stop/’,
‘stop_following’ ) ?>” class=”unfollow” id=”unfollow-member->id ?>”><?php printf( __( 'Stop Following %s'
), bp_get_user_firstname( $members_template->member->fullname ) ) ?>
<?php
}
}
add_action( ‘bp_directory_blogs_actions’, ‘bp_follow_add_listing_follow_button_blogs’ );
add_action( ‘bp_followers_list_item_actions’, ‘bp_follow_add_listing_follow_button_blogs’ );
add_action( ‘bp_following_list_item_actions’, ‘bp_follow_add_listing_follow_button_blogs’ );`
I tried this but it didn’t work now I’m trying to figure out how to fix the Following count. It stores the follow action as part of your followers count. but that’s not a problem.How would I weave in the Member Follow button into the Blogs Directory Listing.
Beyond that, how can I take that Follow button and insert it into the sub blogs sidebar.
January 2, 2011 at 11:34 pm #101715In reply to: PLEASE HELP!!! no group creation option in groups
Hugo Ashmore
ParticipantTry, as @hnla said before *she*
January 2, 2011 at 10:30 pm #101713In reply to: Any successful Buddypress site?
Virtuali
ParticipantJanuary 2, 2011 at 9:43 pm #101710Paul Wong-Gibbs
KeymasterThanks for the heads-up, @gunju2221

If by “BuddyPress profile”, you mean the fields and groups you have configured in the xprofile settings screen, then yes it’s certainly technically possible because site admins can create new user accounts without having to complete BuddyPress profiles. I’m not sure how to practically do this, however. Would need to try and find out.
Try to see if there’s a user registration widget (i.e. https://wordpress.org/extend/plugins/registration-form-widget/ — not tested) and see if it works and does what you want it to do.
(To clarify, there’s no difference between a “WordPress user” and a “BuddyPress”, both are the same.)
January 2, 2011 at 9:39 pm #101709In reply to: Any successful Buddypress site?
murasaki
ParticipantI don’t know about that, I think someone will pass FB up, not sure when, but they’ll get some competition that’ll have them shaking in their boots lol
I hope its me

Hey @Andrea_r lol, i remember when you helped me with my first line of BP code….I’ve gotten better, thank you
January 2, 2011 at 8:24 pm #101706In reply to: PLEASE HELP!!! no group creation option in groups
Virtuali
ParticipantYour code did not appear.
Try, as @hnla said before she deleted her post to revert to the default theme and see if it appears.
If you don’t want users to see your fixing on your site, install “maintenance mode” plugin
January 2, 2011 at 8:05 pm #101703In reply to: PLEASE HELP!!! no group creation option in groups
Virtuali
ParticipantWell it should be there. I wonder why it is not working?
Go into your theme, if you have the buddypress extension pack installed, or you have created your child theme, go into your theme folder, (wp-content/themes/yourtheme) and then go into the folder named “groups.” Inside there should be a file called “Index.php”
Now check to see if the following code is listed anywhere in the file, “control or command +f” will search for the term.
` <a class="button" href="”>`
If for any reason that it is not in the file, put the code above directly after this code in the file:
`
`
January 2, 2011 at 7:51 pm #101699Virtuali
ParticipantThis is an excellent question that I can’t answer, I’ll get the core developer @djpaul
January 2, 2011 at 7:38 pm #101696In reply to: Any successful Buddypress site?
modemlooper
ModeratorCompared to what facebook? Nobody will ever reach what facebook has achieved. And really who would want to? I have a few close friends on FB but could careless what the other users are doing. BuddyPress is more to create groups of interest. That’s it’s power over FB. Also you can control the experience, FB is generic.
January 2, 2011 at 6:57 pm #101693In reply to: PLEASE HELP!!! no group creation option in groups
-
AuthorSearch Results