Search Results for 'buddypress'
-
AuthorSearch Results
-
July 28, 2012 at 3:59 am #138067
In reply to: Buddypress and phpBB forums
newpress
Participantjust curious,
1. how large is your phpBB forum?
2. where you host it?
3. what is the hosting package? Price?
4. how many registered members you have?
5. how many members are online during any given time?July 27, 2012 at 9:21 pm #138063In reply to: Not showing up in plugins list
r-a-y
KeymasterThe Custom Community theme is a BuddyPress theme; you’ll still need to install the BuddyPress plugin though.
Follow the BuddyPress installation guide:
https://codex.buddypress.org/getting-started/setting-up-a-new-installation/Once you have BuddyPress setup, install the Custom Community theme.
Also, try asking the Custom Community support team for help as well:
July 27, 2012 at 9:11 pm #138062r-a-y
KeymasterBuddyPress does not come with an “Add New User” admin page. You are probably referring to WordPress’ User admin page.
I just took a look at your StackExchange thread and it appears you’re using WordPress Multisite:

This is very important to know because you’ll need to run your script on the site that has BuddyPress installed.
Because of using WP Multisite, you’ll also have to change your hook to ‘wpmu_signup_user_notification‘.
The BuddyPress signup hooks I mention above only take effect on frontend registration (eg. testbp.org/register). Since you’re not using frontend registration, those hooks won’t work for you.
Is there any reason why you need multisite?
That will probably give you enough to go on.
July 27, 2012 at 8:56 pm #138061frank tredici
MemberMy Avatar Default was set already to Mystery Man.
So let me ask this…
Maybe it is not overwriting because it already saved the mystery man avatar to their profile? Is that what is happening?
I am trying to get BuddyPress to use my default avatar for all instances where the member has not yet loaded a picture (or avatar). But maybe my thinking is wrong…
Please confirm that I can or cannot overwrite the mystery man avatar, at anytime, on the fly?
Thanks @r-a-y !!
July 27, 2012 at 8:45 pm #138059frank tredici
MemberUghh…excuse my frustration.
Scope and Objective: to enable the Admin (me) to create user accounts. To capture the username created and pro grammatically write to an external file in order to allow user to authenticate though our private authentication method. And to enable new user to receive a welcome email at time they get setup.
I do not care anything about when/how/why/or where they login or activate themselves so as to appear in BuddyPress. That is all down stream stuff that has nothing to do with my process.
The only effective hook I have found is the `add_action(‘user_register’, ”);` Works like a charm.
However, in order to get the user to be seen by BuddyPress I need to go through step #2 and Add New User in the Buddypress Admin page. That is where I tell WP/BP they are allowed access to the “site” and it is also where they get their role assigned.
I have over 200 users to setup in the next week. If I could just cut down my process time by 50% — that is to eliminate the 2 step process and make it a 1 step process — I would be a little happier.
I need to get the Buddypress equivalent hook to WP’s `add_action(‘user_register’, ”);`
That is why I am asking for an enhancement to BP to get an equivalent hook. Down the road it will make my setup life easier.
July 27, 2012 at 8:24 pm #138057r-a-y
Keymaster@frank13 – I’m just re-reading this entire thread.
It looks like you’re registering users manually via the WP admin dashboard’s Users page, but then are wondering why these users do not show up in BP’s Members Directory.
When you register a user that way, they will not show up in BuddyPress’ members directory until they login.
You can bypass this programatically by adding a ‘last_activity’ user meta entry.
Read this thread for more details:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/make-all-members-active-1/#post-110469This hopefully addresses your problems!
July 27, 2012 at 8:18 pm #138056frank tredici
MemberI have some screen shots over here –> http://wordpress.stackexchange.com/questions/59649/how-to-hook-into-add-new-member-in-buddypress/59937#59937
They might help trigger something you have done or seen in your BP implementation process…
Thanks !!!
July 27, 2012 at 7:59 pm #138054In reply to: My Big Problem is Privacy Setting in Bp
juanmaguerrero
ParticipantHi, @raminjan
Here you’ve got a few powerful tutorials on how to get that

http://wpmu.org/how-to-build-a-facebook-style-members-only-wordpress-buddypress-site/
July 27, 2012 at 7:48 pm #138053In reply to: change profile layout (inside theme)
juanmaguerrero
ParticipantHi, @streidl you just have to change the order of appearance of some elements, in concrete:
``
And all of it’s contents should go before:
`…`
You should move that immediately after `` opening tag appears.The files you want to tweak should be in your theme folder, something like
`/wp-content/plugins/buddypress/bp-themes//members/single/home.php`There you’ll see something like:
`
`Just move the “item-nav” before the header
, hope it helps, cheersJuly 27, 2012 at 7:33 pm #138052frank tredici
MemberWith some assistance from @r-a-y:
The bp_core_signup_user hook does something after BP has registered the user. Registering the user does not mean the user is activated yet.I ran a test:
`function myTest() {
echo ‘fingers are crossed’; exit;
}
add_action(‘bp_core_signup_user’, ‘myTest’);`I created a new user in the BuddyPress Add New User form. I checked the box to not send an email.
Results:
(1) add_action() interceptor did not echo and halt — not what I desired
(2) new user got an email — also, not what I desiredAny suggestions @r-a-y or other BP Guru’s? Thanks
July 27, 2012 at 7:17 pm #138051In reply to: bbPress 2.1 and BuddyPress 1.6 beta 2 Group Forums
gswaim
ParticipantI am building a fresh BuddyPress site and am still at the testing phase. I have the luxury of blowing it out and starting all over. I have tried probably 20+ combinations of BuddyPress 1.5.6, BuddyPress 1.6 RC-1, “BuddyPress Ready” themes, standard themes + template pack, bbPress lite set up via BP install as group forums, bbPress 2.1 set up as sitewide forums during the BuddyPress install, and bbPress 2.1 set up as BP group forums but not through the BP setup.. Whew… This makes my head hurt

My current, and I hope final combination:
WordPress 3.4.1
BuddyPress 1.6 RC-1
Genesis Framework + BuddyPress Theme Pack *
bbPress 2.1 Installed after the BuddyPress Install and set up to support BP group forums*(I tried their GenesisConnect plugin, but get closer to right by using the BuddyPress Theme Pack
All is well except I need the group forums to go full width (no sidebar). If I could tweak some code and make the sidebar for group forums go away I would be a happy camper.
Thanks in advance for any help on this!
Link to Site: http://184.175.77.145/~digitall/wp4
July 27, 2012 at 7:01 pm #138050juanmaguerrero
ParticipantHi, @joemd clearly one of the best options and the one I use is http://buddydev.com/plugins/bp-gallery/ you will pay only 30 dollars if I remember well and have access to tons of premium plugins. That plugin BP Gallery is pretty complete, you can set it to work only with pictures or if you want also videos and music, hope it suits you
July 27, 2012 at 5:32 pm #138049In reply to: Ridiculously long usernames being generated
Tux Kapono
ParticipantThank Roger,
It took a month to get a response from the developer, thus me trying to figure it out in the meantime. Their answer:
“Yes, this is in fact because i’m generating a random username for users
(since we don’t want them to use it anyway.) But you can modify the code,
which is somewhere in the gantry framework – buddypress plugin folder, and
generate it from the display name or whatever. I just wanted to make sure
there were no invalid characters in it.”July 27, 2012 at 2:56 pm #138045frank tredici
MemberMainly to help anyone that looks here and tries to take away that `bp_core_signup_user` is the solution…well, it isn’t.
In my plugin I simply replaced:
`add_action(‘user_register’, ‘rebuildAuthUsers’); // rebuild the authorized user list anytime a new user is created through WordPress`with:
`add_action(‘bp_core_signup_user’, ‘rebuildAuthUsers’); // rebuild the authorized user list anytime a new user is created through BuddyPress`It did not intercept the registration process and launch my function.
Still digging…
July 27, 2012 at 1:57 pm #138042In reply to: How to make a Discussion Group ”Sticky” [Closed]
frank tredici
MemberCan’t be done (http://wordpress.stackexchange.com/questions/59656/how-to-make-a-discussion-group-sticky-in-buddypress).
Have posted this as a Trac entrancement request. Hopefully it will get attention there…
July 27, 2012 at 1:47 pm #138041In reply to: Drop down options defaults to ”0”
12sp
MemberI have installed the Suffusion BuddyPress Pack and it works correctly on one site but not the other. I will check there too.
July 27, 2012 at 12:58 pm #138037frank tredici
MemberAwesome @aces…I think we are getting closer…Do you know where I insert
<img src="http://my.BuddyPress_site.com/wp-content/themes/my-theme/images/mystery-man.jpg" />?Do I place it all by itself in my
functions.php file? If I do (being a PHP coder) I know a stray html tag will show that image on every page. I need to somehow wrap it around ado_action()or andadd-action()or anadd-filter()or anadd_filters()— I believe, as I learn more about hooking in WordPress/BuddyPress.Thanks for guiding me on what to most out there is such a simple replacement to the out-of-the-box Mystery Man image graphic.
July 27, 2012 at 11:34 am #138035In reply to: Help needed in buddypress
tamilcselvan
MemberThanks @mercime
July 27, 2012 at 10:41 am #138033July 27, 2012 at 3:21 am #138029In reply to: Replace BBPress forum with BuddyPress forum?
SydneyDesigner
ParticipantThanks @djPaul
I also read another recent thread: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/bbpress-2-1-and-buddypress-1-6-beta-2/?#post-134036 and commented there. It seems likely that there are a few bugs to be sorted out to get this working.
A particular thing I had missed that might help someone else to get bbP2.1 forums working a bit at least with BP1.6RC1 is that, as well as diabling BP Group Fourms I had untick “Discussion Forums” in WP-admin> settings> buddypress> components (which I find counter-intuitive).
July 27, 2012 at 3:12 am #138028In reply to: bbPress 2.1 and BuddyPress 1.6 beta 2 Group Forums
SydneyDesigner
ParticipantThanks for your comments here @jeaz, @newpress and @PaulGibbs They really helped me out and confirmed that I wasn’t just being really stupid! Yes, I concur with you, I’m getting the same issues you raise above with WP 3.4.1, bbPress2.1 and BP1.6RC1
It’s looking like the new forums will be excellent and useful, so many thanks to all the developers. But at the moment the forum admin between BP and bbP has a some limiting bugs and is also confusing to me. I’d like to help out by testing but, for me at least, I feel that it is best to wait until the developers have another crack at the integration first.
July 27, 2012 at 3:01 am #138027In reply to: Forum posts problem in groups
dreamlarp
Member@mercime tyvm. it worked just switching from the game portal theme to the defalt and back. It does look like I will have to make updates in the defalt first then switch back.
July 27, 2012 at 2:15 am #138024q5sys
Member@ Sofian J. Anom
That might just work out perfectly, however I do have a further gui integration question for you.
With a simple WP page you have a menu bar with items on it (pages, catagories, etc) Of course those can also have sub entries below them when you mouse over them.
If I go with a multisite i be able to have a menu entry on the main site thats, lets say; ‘Buddypress’ (for lack of a better example, and then on mouseover have drop down items for ‘groups’ ‘forum’ ‘activity’ ‘friends’ etc. and clicking them takes them to the appropiate spot on the subsite?
I’ve never seen a menu item that links to a page on a subsite. If this can be done, and I can find a coding example then that’ll work perfectly for my needs.
Thanks for your input, I’ll make sure to read up on those links tomorrow.edit: i just glanced through those pages and I have alot to read, are you aware of anyway to integrate stats across a network of WP sites onto the main one visable in the main dashboard?
July 27, 2012 at 1:57 am #138022Sofian J. Anom
MemberWhat about by changing your WP site to the multisite and activate BuddyPress on a sub site? In order to not appear as a separate site, you can set it as a sub directory rather than a subdomain.
WP Multisite:
https://codex.wordpress.org/Create_A_NetworkChanging BP Internal Configuration Settings:
https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/, especially on the “Set the which blog ID BuddyPress will run on:”July 27, 2012 at 12:11 am #138018In reply to: Multiple Status Updates
modemlooper
ModeratorYou can add meta to updates and filter that way. Google “add meta BuddyPress activity” it’s been discussed before. You will need php skills for this customization
-
AuthorSearch Results
