Search Results for 'buddypress'
-
AuthorSearch Results
-
October 20, 2012 at 11:08 pm #143751
In reply to: Should install bbpress or buddypress first?
Paul Wong-Gibbs
Keymaster1. Either. It doesn’t matter which order.
2. bbPress would continue working, as it’s a separate plugin. Deactivating BuddyPress won’t affect or delete your bbPress data.
October 20, 2012 at 7:29 pm #143749In reply to: Adpating theme with BP Template Pack
sb0n
ParticipantWell, @mercime, I did it at first (and re-did it right now) it doesn’t seem to change.
I really don’t get why it’s working on the BP Twenty Ten but not with my theme.
October 20, 2012 at 7:27 pm #143748In reply to: Buddypress Theme Designer / Developer
@mercime
ParticipantThank you for posting in the Jobs Board https://buddypress.org/community/groups/bp-jobs-board/forum/topic/theme-developerdesigner/
Closing this topic.October 20, 2012 at 7:21 pm #143746In reply to: Buddypress Theme Designer / Developer
@mercime
Participant@techstar please post at https://buddypress.org/community/groups/bp-jobs-board/forum/
you could also post at http://jobs.wordpress.netOctober 20, 2012 at 7:02 pm #143745In reply to: Adpating theme with BP Template Pack
sb0n
ParticipantHello @mercime,
Again, thank you very much for your precious help !I did what you told me, but I don’t get it, it’s style not working.
It’s weird though, because the BP Twenty Ten doesn’t show the squares / list-style-type and other bugs : http://tinypic.com/r/2j1n5mg/6 ; but my BP Template packed theme does : http://tinypic.com/r/i4e9md/6This is the pastebin of the new style.css (I put the BP stuff at the begin) : http://pastebin.com/HJ8tuAEC
What am I missing ?
Thanks !October 20, 2012 at 4:58 pm #143743In reply to: Create private membership site with BuddyPress
Jonas Lundman
ParticipantHi, recently worked on a datingsite, and a school intranet for BP and scanned 6 month of Getting BP private. Have a lot of notes -and one popped up when reading this post:
http://picklewagon.com/wordpress/new-user-approve/
“When a user
registers for the blog, the user gets created and then an email gets sent to
the administrators of the site. An administrator then is expected to either
approve or deny the registration request. An email is then sent to the user
indicating whether they were approved or denied. If the user was approved,
the email will include the login credentials. Until a user is approved, the
user will not be able to login to the site.”Try this as a start – didnt remember if I have (Went trough TONS of solutions of reg process, but I saved this link so maybe its useful…), The fix might be to preserve the passwords somehow instead of autocreate them when aproved.
/ Maybe gonna share my solutions later for the BP datingsite – lot of privacy filters and hooks…
October 20, 2012 at 3:00 pm #143741In reply to: Create private membership site with BuddyPress
modemlooper
ModeratorYou are better off letting email go to user but remove the activation link. Create a function that hooks into member sign up to email you separately. I’m suggesting this because its better conversion for users to get the email.
`function email_admin_user_signup() {
//email admin code here
}
add_action(‘bp_core_signup_user’, ’email_admin_user_signup’);`October 20, 2012 at 2:48 pm #143740In reply to: Create private membership site with BuddyPress
angslycke
Participant@djpaul: Yes, but I want to redirect the “activate your account” e-mails to the site admin instead of the user to let the admin know that a new user has registred. I’m trying to figure out the best way to do this. Obviously I don’t want to edit core files, so best practice should be to use a filter to replace the users e-mail address with the site admin e-mail address I guess?
I found an old post regarding this here (from 2010):
http://www.thoughtsofjs.com/moderate-new-user-registration-in-buddypress.html
They’re editing core files there (bad!), but I found this in the comments as a function to achieve the above:
`
function filter_replace_with_moderator_email($user_email) {
return get_site_option( “admin_email” );
}
add_filter(‘bp_core_activation_signup_user_notification_to’, ‘filter_replace_with_moderator_email’);
`I added this to my themes custom functions.php-file but the e-mail is still sent to the user instead of the admin. Is there a change in BP 1.5 so that I need to change the hook in the filter? Does anyone know?
October 20, 2012 at 9:44 am #143739In reply to: BuddyPress Media component
rtCamp
Participant@charlietech, if you’ve installed BuddyPress Media plugin, you can see media tab nearer to activity, profile, friends, groups etc.
See the screenshots here
http://rtcamp.com/buddypress-media/tour/October 20, 2012 at 9:34 am #143738In reply to: Plugin: BuddyPress Media Component activation error
rtCamp
ParticipantThe plugin is no more supported. You can install the new version from here.
https://wordpress.org/extend/plugins/buddypress-media/October 20, 2012 at 2:11 am #143736In reply to: Dating Style site
@mercime
ParticipantSomething like this https://wordpress.org/extend/plugins/buddypress-user-account-type-lite/
October 20, 2012 at 2:10 am #143735In reply to: Adpating theme with BP Template Pack
@mercime
Participant@sb0n 1. BuddyPress is not activated per my check of your site.
2. See instruction above:
Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.
– I may have missed it but I didn’t see the copy of the style mods in your stylesheet.October 20, 2012 at 2:05 am #143734@mercime
ParticipantAfter you activate BuddyPress in Network Admin, you need to go through the Installation Wizard https://codex.buddypress.org/getting-started/setting-up-a-new-installation/installation-wizard/
October 20, 2012 at 2:04 am #143733In reply to: Moving from oxwall to Buddypress
@mercime
ParticipantThere’s no import plugin that I know of that’s out in the market. You’d need to code the script yourself or hire a developer to do so https://buddypress.org/community/groups/bp-jobs-board/forum/ and/or http://jobs.wordpress.net/
October 20, 2012 at 1:44 am #143732In reply to: Split members into admin defined caregories
@mercime
ParticipantThere’s https://wordpress.org/extend/plugins/buddypress-user-account-type-lite/
haven’t tested it though.October 20, 2012 at 12:17 am #143729In reply to: [Resolved] Print user id in profile page
modemlooper
Moderatorbp_displayed_user_id()
All the template tags you can use: https://codex.buddypress.org/developer-docs/buddypress-template-tags/
October 19, 2012 at 11:36 pm #143727In reply to: Adpating theme with BP Template Pack
sb0n
ParticipantHum. I’m sorry to bother you again @mercime but it’s really weird : I had a major bug today (I don’t know why, I was updating my website and then, boom, white screen of death…). I had to re-install WP, BP, and everything else… Fortunately I backed it up yesterday so I didn’t lose anything.
Anyway, I re-uploaded every exact same file, but then, I’ve got a difference in BP : some square (ul / li) are now there…. I don’t get why. Also, the BP integration is but abnormal (a small part on the right side is being hidden now…).The screenshot showing those little weird square thing… : http://tinypic.com/r/elbfvb/6
The pastebin of the member page shown above : http://pastebin.com/18rd2kq1The weird thing is, they also appeared on my sidebar (for no apparent reason) : http://tinypic.com/r/2d26bmw/6
Do you have any idea of what is going on ?
Thank you !
October 19, 2012 at 10:18 pm #143723meg@info
ParticipantOctober 19, 2012 at 7:55 pm #143719In reply to: “Further Information” Fields for BP Users
HansRuedi
ParticipantJust found them. These fields are part of Marcus’ Events Manager plugin – and NOT BuddyPress. Props to WP-Members Chad for helping me!
October 19, 2012 at 7:34 pm #143718In reply to: What are Friends for?
9087877
Inactive@mercime Hey no problem. Just out of curiosity even though that plugin has not been updated, do you know if it works with the current versions of WP and BP? I know sometimes it just a matter of testing with the current versions and updating the readme.txt in the plugin to reflect it will work with them. Thanks again.
@tdempsey2012 if @mercime confirms the questions above this may help give a you a reason for friends on your site. Also you may want to check out the plugin BP FriendPress https://downloads.wordpress.org/plugin/buddypress-friendpress.zip . It allows you to show your friends and your own activity in the activity stream for your users like facebook does. The admin still see’s sitewide activity.
Edit:
@mercime @r-a-y @tdempsey2012 I just tested r-a-y’s plugin on my test server with the latest versions of WP and BP and its working as it should. Subscribers get denied sending a private message if they are not friends, and the admin can send a private message to anyone regardless of friendship. Is there a chance of getting @r-a-y to update the repository to reflect this plugin is still valid for the current versions of WP & BP? Thanks!October 19, 2012 at 6:43 pm #143716In reply to: What are Friends for?
@mercime
Participant@shawn38 Apologies, no bug at all. It’s my bad, I forgot I have BuddyPress Message Privacy Plugin installed in all sites ever since There’s a free https://wordpress.org/extend/plugins/buddypress-private-message-for-friends-only/ but it needs to be updated for current BP version.
October 19, 2012 at 6:36 pm #143714In reply to: Admin bar load in Header instead of Footer?
Jacob Schweitzer
ParticipantOctober 19, 2012 at 6:10 pm #143713In reply to: What are Friends for?
9087877
Inactive@mercime I am using the latest versions of WP and BP and as you stated above `”Private Messages can only be sent to and received by Friends.”` I have found on my test server a possible bug if this is supposed to be the way it functions as stated above. The ajax auto fill in for the User/Friends name will work if you are friends, however it does not work if your not friends, but if you manually type in the users name even if your not friends the private message still goes through and is delivered to the person you are not friends with. Keep in mind these test users are subscribers only and not admins, so is this a possible bug? Thanks!
October 19, 2012 at 5:04 pm #143711@mercime
Participant– Pagelines theme with BP -> if I recall well, Pagelines has a premium plugin to make Pagelines theme compatible with BuddyPress
– You can find examples of BP multisite installs at https://buddypress.org/showcase/
– Create a Network – https://codex.wordpress.org/Create_A_Network
– Before Installing BuddyPress – https://codex.buddypress.org/getting-started/before-installing/
– Installing BP – https://codex.buddypress.org/getting-started/setting-up-a-new-installation/October 19, 2012 at 4:56 pm #143710In reply to: Group Forums not Working
-
AuthorSearch Results