Search Results for 'buddypress'
-
AuthorSearch Results
-
November 18, 2013 at 11:33 pm #174430
In reply to: Duplicating group component
modemlooper
ModeratorA group is just a BuddyPress component and you can create your own components. Duplicating the groups component is not an easy task. Why do you need more group types?
https://codex.buddypress.org/plugindev/creating-a-custom-buddypress-component/
November 18, 2013 at 9:14 pm #174426In reply to: Enable buddypress on WP multisite's sub site
martinbeaulne
ParticipantCan someone shed light on a pretty simple question:
Why people say Buddypress is a multisite plugin when, in fact, it is not.
It only works on the main site. Not on the subsite.What is the point in saying it’s a multisite plugin when it’s not ?
I spent lots of time moving my existing wp/bp site to root of my domain to make it multisite, then created a subsite, all this to make my site multi-language… Only to find out, later on, that I couldn’t* access my bp profiles, etc. from the subsite…
Am I missing something ?
I read this on some other page:
« Allow BuddyPress to function on multiple blogs of a WPMU installation, not just on one root blog (More details about BP_ENABLE_MULTIBLOG):
define ( ‘BP_ENABLE_MULTIBLOG’, true ); »at: https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/
And still, after adding this, the answer to « can I put multiple blogs id in define(‘BP_ROOT_BLOG’, 2); », is still « James: no ».
.. ?
November 18, 2013 at 6:40 pm #174420In reply to: [Resolved] no support on wordpress latest version
mayur hotkar
ParticipantI got it working some how…i was able to find buddypress in the featured option in plugin… Any wayz thnx… U provide good support…
November 18, 2013 at 5:53 pm #174417In reply to: Buddypress Integration with Magazon Theme
AgenceRegard
ParticipantYess but after you paid, it’s your own business … So, I go here to post my question and ask your help.
November 18, 2013 at 5:28 pm #174415In reply to: Buddypress Integration with Magazon Theme
Henry
MemberHave you tried contacting the theme author?
November 18, 2013 at 3:50 pm #174407In reply to: [Resolved] no support on wordpress latest version
mayur hotkar
ParticipantM. Juz a beginner.. I dont know whr it is installed.. Whn my domain name got registered.. I got wordpress.. Den i installed a theme.. N the website was in existence.. Bt the default in WordPress is a blog website.. So to convert it in seconds network site m trying buddypress…. Plz help me in simple language
November 18, 2013 at 3:14 pm #174404In reply to: [Resolved] no support on wordpress latest version
@mercime
Participant@mayur-hotkar Strange. Where did you download a copy of BuddyPress? Download at https://wordpress.org/plugins/buddypress/
How did it show that ” it shows it contains virus.. So cant b installed”? Where are you hosted? Is your WordPress installed at domain root?
November 18, 2013 at 3:09 pm #174401In reply to: [Resolved] no support on wordpress latest version
@mercime
Participant@mayur-hotkar are you on a multisite installation? If so, go to Network Admin > Plugins and activate BuddyPress. If you’re on a single WP installation, try to reupload BuddyPress manually, i.e. s/FTP
November 18, 2013 at 3:06 pm #174400In reply to: [Resolved] no support on wordpress latest version
mayur hotkar
ParticipantI my search in plugin option.. I cant find buddypress…
November 18, 2013 at 1:49 pm #174397In reply to: [Resolved] no support on wordpress latest version
@mercime
Participant@mayur-hotkar BuddyPress is compatible with WP 3.7.1.
November 18, 2013 at 1:49 pm #174396Henry
Member@beenyoung you can submit a BuddyPress Trac ticket at:
https://buddypress.trac.wordpress.org/
Trac is where the core developers hang out so if you think there is a bug in the way the BP core works then that is the best place to raise the issue.
November 18, 2013 at 1:47 pm #174395In reply to: Using thesis+child theme with Bp+Bp theme?
@mercime
Participant@speedyworm BuddyPress uses the theme’s page.php to render the BP components. Have not seen a thesis theme for some time. Do check Thesis’s forums if someone already made the child theme for BP Theme Compatiblity already. If the page.php file of a thesis theme has the proprietary templating system where you cannot see the_title() and the_content() tags within the WP loop, then:
– create a new thesis child theme for BP
– copy over the parent theme’s page.php to the child theme
– change child theme’s page.php so that it contains the_title() and the_content() tags within the WP loop.November 18, 2013 at 10:55 am #174390In reply to: Disable Buddypress Sitewide Activity RSS
bp-help
Participant@tse11
Use init hook instead of bp_init! Place in bp-custom.php :
https://codex.buddypress.org/plugindev/bp-custom-php/function pcfbp_lite_cut_nonreg_visitor_rss_feed() { if ( !is_user_logged_in() ) { remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed' ,3 ); remove_action( 'bp_actions', 'bp_activity_action_personal_feed' ,3 ); remove_action( 'bp_actions', 'bp_activity_action_friends_feed' ,3 ); remove_action( 'bp_actions', 'bp_activity_action_my_groups_feed',3 ); remove_action( 'bp_actions', 'bp_activity_action_mentions_feed' ,3 ); remove_action( 'bp_actions', 'bp_activity_action_favorites_feed',3 ); remove_action( 'groups_action_group_feed', 'groups_action_group_feed',3 ); } } add_action('init', 'pcfbp_lite_cut_nonreg_visitor_rss_feed');Make sure the single quotes are not being modified if you are copying and pasting the code!
November 18, 2013 at 8:12 am #174383In reply to: Trying to echo User role in all posts
noizeburger
Participant@dtabraham
I’m looking for the same functionality and would prefer, to pass the user role over to a custom xprofile field to integrate it in buddypress search.
Meanwhile I show the user roles with a function I found in the forums:bp-custom.php:
function pc_get_userrole ($user_id) { $user = new WP_User($user_id); $userclean = $user->roles[0]; return $userclean; } function get_user_role( $user_id ){ $user_data = get_userdata( $user_id ); if(!empty( $user_data->roles )) return $user_data->roles[0]; return false; }and then echo where you want (in my case I did it in member-header.php):
<?php echo get_user_role(bp_displayed_user_id()); ?>You can take a look here: link to a profile on my site
greetings
November 18, 2013 at 8:06 am #174382In reply to: Trying to echo User role in all posts
dtabraham
ParticipantI see I have accidentally posted this inside the Installing Buddypress category.
My apologies,; I didn’t expect that to happen when I clicked on New Topic.Is there a way for me to move it?
November 18, 2013 at 4:04 am #174377In reply to: Buddypress phone app
bradlyr
ParticipantHi, I’m currently working on an application that can be submitted to the stores. It will be available at Buddy Sidekick
November 18, 2013 at 4:02 am #174376In reply to: iPhone app for BuddyPress
bradlyr
ParticipantI’m working on an iPhone and Android App and will be available at BuddySidekick.com
November 18, 2013 at 3:58 am #174375bradlyr
ParticipantBuddySidekick.com Should be ready in about 2 weeks.
November 18, 2013 at 3:17 am #174373In reply to: Disable Buddypress Sitewide Activity RSS
tse11
Participant@aces Thanks much, that was a great idea. Unfortunately it didn’t work. There has got to be a way to at least make these feeds private. If anyone knows, please let me know.
November 18, 2013 at 2:38 am #174369In reply to: BuddyDroid – BuddyPress for Android
Jmar42
ParticipantIs there a way to change the status update to a post instead of the current?
November 17, 2013 at 11:48 pm #174364In reply to: registration on group pages
@mercime
ParticipantCheck out http://buddydev.com/buddypress/limit-groups-per-user-plugin-for-buddypress/
Not quite clear about registration in group. Default is that if the plugin above is activated, once a user Joins (not registers) a group, the member cannot join any more groups.
November 17, 2013 at 10:39 pm #174363In reply to: Editing Buddypress Activation Email
shanebp
ModeratorWrite a filter.
buddypress\bp-members\bp-members-functions.php Line 1396
$message = apply_filters( ‘bp_core_signup_send_validation_email_message’, $message, $user_id, $activate_url );
November 17, 2013 at 8:49 pm #174361In reply to: Editing Buddypress Activation Email
xWafflecakes
ParticipantPS: I’ve tried Welcome Pack but that didn’t work. (WP 3.6, BP 1.8.1)
November 17, 2013 at 8:34 pm #174358In reply to: registration on group pages
David Bisset
ParticipantNot easily out of the box, from what I know. Why on the groups pages? Are you wanting a registration to be associated with the group that they registered from?
If i had to do this, I would use either build a form and put it on the group’s home template or use a third party plugin like Gravity Forms to add a form via shortcode on the template. There are pros/cons to either method.
If all you are doing is associating a group with a registration, then having a link to the BuddyPress registration page (via a querystring – say ?groupid=1 or ?groupname=test-group) and have that registration page include that group id in a hidden field (that gets added as a BP profile field upon submission/registration).
November 17, 2013 at 8:04 pm #174355In reply to: Member Profile Meta Key Value
hughshields
ParticipantThe WPUF Pro plugin uses a field they are calling “Meta Key” on each of their user registration fields. The BP Integration Add On maps each of the custom registration fields to the Buddypress XProfile field. Unfortunately the value in the Meta Key field seems to be not syncing with whatever value Buddypress assigns to member profile fields. So I end up with two sets of member profile fields that are not updating correctly.
So I am trying to locate the naming convention for Buddypress Extended profile fields or find out what each field is called. What the user meta value is I guess?
I am installing PHP MyAdmin and will try to find there but hoped there was a naming convention or place to see this in the Admin. -
AuthorSearch Results