Search Results for 'buddypress'
-
AuthorSearch Results
-
May 6, 2016 at 12:25 pm #253181
In reply to: Buddypress mails get sent text-only
fidelleon
Participant“Solution” told here works fine but requires modifying core:
https://buddypress.org/support/topic/2-5-html-email-styling-not-working/
The BP Registration Options plugin forces in some way to send the emails using content_plaintext instead of content_html:
$must_use_wpmail = apply_filters( ‘bp_email_use_wp_mail’, $wp_html_emails || ! $is_default_wpmail );
It gets set to true so:
if ( $must_use_wpmail ) {
[…]
$email->get( ‘content_plaintext’, ‘replace-tokens’ )If you visit the “Manage Signups” and send an email to the user (reminding to activate their accout), the mail is 100% HTML w/o touching anything…
May 6, 2016 at 12:51 am #253165In reply to: Complete chat system???
peter-hamilton
ParticipantThis is a great chat plugin and very facebook-ish, although no video, but chat has multichat function etc.
http://codecanyon.net/item/wordpress-buddypress-users-chat-plugin/10776067
May 5, 2016 at 3:05 pm #253161In reply to: Birthday Notifications
lucaram
ParticipantThanks Henry,
Unfortunately I struggle to understand how to produce the code, I’m not a code expert like you guys.
Here is what I have and how I would like to implement it for my friend’s birthday:

I have found this that mentioned the “bp_notifications_add_notification()” function:
That is for notifications when someone comments on their blog post, but it is far too complex for me to modify for birthdays I’m afraid 🙁
Any chance somebody could share the code?
May 5, 2016 at 1:46 pm #253160In reply to: 2.5 HTML email styling not working
shanebp
ModeratorI would like to give suggestions, if buddypress team should be given backend options like select content type (1)HTML email (2)Plain text
because buddypress have not given any hook for changes content type textYou can create an enhancement ticket here using the same login as you use for these forums.
May 5, 2016 at 12:38 pm #253154Henry Wright
ModeratorIf you’re already using WordPress then BuddyPress might be a good option because of how tightly integrated the two are. BuddyPress is just a plugin so to get started you simply have to activate it from your WordPress dashboard.
My advice would be to set up a test install and give BuddyPress a try. You’ll then get a feel for if it will meet your exact requirements. Lastly, if BuddyPress core doesn’t have the functionality you need, then you’ll find many plugins in the Plugin Directory written specifically for BuddyPress. Taking a quick look at your requirements, one that you may want to check out is BuddyPress Follow.
May 5, 2016 at 10:47 am #253151In reply to: 2.5 HTML email styling not working
Bharat
ParticipantHello Guys
I have found solutions for html email text
there is some changes in bp_core files :
You can change content type given below path:
\wp-content\plugins\buddypress\bp-core\bp-core-functions.php line number 2962put content_html text instead content_plaintext:
content_plaintext should be send plain text email and content_html should besend html email:
$email->get( ‘content_plaintext’, ‘replace-tokens’ )$email->get( ‘content_html’, ‘replace-tokens’ )
I would like to give suggestions, if buddypress team should be given backend options like select content type (1)HTML email (2)Plain text
because buddypress have not given any hook for changes content type textMay 5, 2016 at 9:21 am #253148Topic: Buddypress mails get sent text-only
in forum How-to & Troubleshootingfidelleon
ParticipantWordPress 4.5.1
BuddyPress 2.5.1
Geodirectory framework and Geodirectory’s Modern theme.Buddypress mails get sent but only using the plain text version. I have modified one of the templates with different wording for HTML and plain text, and no matter what, the system always send the plain text version, so it seems like some part of the system is deciding to just take such version.
My WordPress instance doesn’t have (and very likely won’t have) a local SMTP server so I’m using “Easy WP SMTP” to communicate with Google servers. I also use BP Registration Options to get account validations.
May 5, 2016 at 7:01 am #253146In reply to: How to customize the registration fields
danbp
ParticipantHi,
read here please: https://buddypress.org/support/topic/buddypress-registration-without-username/
Other solutions (untested):
https://wordpress.org/plugins/smart-wp-login/
https://wordpress.org/plugins/ppress/
There maybe other plugins.If you don’t have a good php experience, i would recommand you to not alter this sensible WP core part in any way.
May 5, 2016 at 2:22 am #253144In reply to: Using Buddypress forums with LearnDash courses
writerscentre
ParticipantThanks @shanebp. Yes, I contacted LearnDash over night and they suggested we look BuddyPress.
They said:
“I would look into BuddyPress. This has private groups and you can associate courses with different groups as well as allow each group have a private forum. You can find our add-on for BuddyPress here:
http://support.learndash.com/buddypress/”I had a question about associating courses with different groups. I could only associate a course with 1 group. Is it possible to associate a course with multiple groups?
We would have the course Creative Writing
And multiple groups that we’d like to associate with it. Is that possible?What does the association actually do? Do we need to associate the group with a course?
Thanks for your help!
May 4, 2016 at 8:59 pm #253142In reply to: Groups/Members alphabetical sort by default
danbp
ParticipantMay 4, 2016 at 4:50 pm #253138In reply to: associating and embedding posts to particular Groups
Glenn
Participantit’s not entitlement, it’s just (clearly unjustified) expectation. my questions were very simple questions for BuddyPress aficionados. and i’m not the only one who gets ignored in here, it’s apparent.
please excuse me for asking for help. i’ll know better next time.
and at least i wasn’t rude.
May 4, 2016 at 4:45 pm #253136In reply to: associating and embedding posts to particular Groups
shanebp
Moderatorrequests for help in these forums don’t seem to get much attention to me
Everyone here is a volunteer. Nobody is obligated to answer your questions – especially ones steeped in entitlement.
If you want more attention and faster attention – hire a developer.
Or at least use gist to share the code you’ve written in attempting to find a solution.
For your task, I would use the Group Extension API.
May 4, 2016 at 1:55 pm #253126In reply to: Removing options for private and hidden groups
shanebp
ModeratorIs your edited file in the correct place?
It should be here:
.../wp-content/themes/your-theme/buddypress/groups/create.phpMay 3, 2016 at 4:35 pm #253109In reply to: Non-members can see child forums in groups
danbp
Participanthi @artisantopia,
seems you found a bug ! 😉 I tested your issue and got the same behave.
Please report this on Trac and mention your first topic. Trac login use same credentials as here.
I report this on bbPress slack immediatly. (in case of)
Thank you.
May 3, 2016 at 2:07 pm #253107In reply to: Non-members can see child forums in groups
Artisantopia
ParticipantFurther testing:
– I’ve changed to TwentyFifteen theme
– deactivated all plugins except for BuddyPress and bbPressI still can’t see topics that the user should be able to see. And they can access a private forum they aren’t a member of.
Where do I even begin to figure out what is going wrong with this site?
May 3, 2016 at 1:55 pm #253106In reply to: Non-members can see child forums in groups
Artisantopia
ParticipantI just ran 2 forum repairs:
– Recalculate private and hidden forums
– Repair BuddyPress Group Forum relationshipsand now I have a different problem. I’ve actually been experiencing this problem on and off now for about 2 weeks and I’m starting to pull my hair out!
So now if I go to the forum list (at the category level) I can see that there are topics in the child forums. But when I click through to the child forum it tells me “Oh bother! No topics were found here!” This is for a group that the user is a member of. There are definitely topics in that forum.
If I change the user from a Participant to a Moderator they can see the topics.
If I change them back to a Participant and then toggle the forum from private to public to private they can see the topics again. I have done this toggling of forum visibility several times over the past week and it only lasts for a day or two, then I’m back at this problem.
May 3, 2016 at 1:35 pm #253105In reply to: Removing options for private and hidden groups
shanebp
ModeratorCreate a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\groups\create.phpThen, in your template overload, remove the html for the Private and Hidden options.
May 3, 2016 at 1:20 pm #253102shanebp
ModeratorPlease do not double post. Your other post has been deleted.
The redirect for the register page while logged in is in this file:
buddypress\bp-core\bp-core-catchuri.phpYou can adjust it by using this filter hook:
apply_filters( 'bp_loggedin_register_page_redirect_to', bp_get_members_directory_permalink() );May 3, 2016 at 10:22 am #253094vaughancavca
ParticipantHi,
In the privacy options on the group creation page, I’d like to have the private and hidden group options taken out, as I only want users to have their posts public. How would I go about doing this?
http://thenetwork.cavcaventures.org
I’m on WordPress version 4.5.1 and BuddyPress version 2.5.2May 1, 2016 at 7:21 am #253060In reply to: Terms & Conditions Checkbox
binary10
ParticipantYou can try BuddyPress Simple Terms And Conditions
May 1, 2016 at 7:10 am #253059In reply to: user sending private message to users not his friend
binary10
ParticipantYou can try BuddyPress Private Messages for Friends Only
Note:This plugin hasn’t been updated in over 5 yearsApril 30, 2016 at 4:49 pm #253053In reply to: Private Message Delay in Sending
shanebp
ModeratorI agree that there should be some indication or disabling when the button is clicked.
You can open an enhancement ticket here – use the same user & pw you use for these forums.
There is a plugin that will disable the button when sending public and private messages.
You can get it here:
https://wordpress.org/plugins/bp-profile-message-ux/Or here:
http://www.philopress.com/products/buddymessageux-free/April 30, 2016 at 12:00 am #253044In reply to: Remove zebra striping from profile
yoast79
ParticipantHey Henry,
After some more hours of trying I managed to find the right code to get it done!
This is what made it work;
.profile-fields { color: #ffffff } .profile-fields { background: #000000 } .profile-fields tr.alt td { color: #ffffff } #buddypress table.profile-fields tr.alt td { background: #000000 }I’m sorry to bother you with my question.
April 29, 2016 at 11:35 pm #253043Henry Wright
ModeratorThis article is super valuable if you plan on filtering the activity loop:
April 29, 2016 at 4:57 pm #253036In reply to: Change Registration Phrases
Patricia Taylor
ParticipantHi,
I used this article: https://codex.buddypress.org/getting-started/customizing/customizing-labels-messages-and-urls/
I downloaded & updated the .pot file to just a .po file, then saved that as a .mo and uploaded both to the wp-content/languages/plugins folders.
But it did not change the wording. I had to create the wp-content/languages/plugins folders.
Did I not understand something correctly?
Thanks
Pattie -
AuthorSearch Results
