Search Results for 'buddypress'
-
AuthorSearch Results
-
May 10, 2016 at 1:22 am #253265
In reply to: Buddypress on Multisite
Henry Wright
ModeratorI think this should be a question for the core team. You should post it on Trac:
May 9, 2016 at 8:14 pm #253254In reply to: [Resolved] How to Hide Admin accounts 2016?
Henry Wright
ModeratorCheck out this article:
May 9, 2016 at 7:04 pm #253252In reply to: CSS causing cover image to disappear.
MD FAKRUL ISLAM
ParticipantI faced the same issue when I copied the buddypress.css from buddypress/bp-templates/bp-legacy/css to mythemes/buddypress/css
Here is the code below I used to get rid of this…
function your_theme_cover_image_css( $settings = array() ) { /** * If you are using a child theme, use bp-child-css * as the theme handel */ $theme_handle = 'bp-parent-css'; $settings['theme_handle'] = $theme_handle; /** * Then you'll probably also need to use your own callback function * @see the previous snippet */ $settings['callback'] = 'bp_legacy_theme_cover_image'; return $settings; } add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 ); add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );Hope it helps..
May 9, 2016 at 6:24 pm #253251In reply to: Private Member?
shanebp
ModeratorI don’t believe
bp_parse_args()was available when I wrote that codex page.But you should use it instead; it should solve your issue:
https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/May 9, 2016 at 3:08 pm #253245In reply to: How to change item text from main nav
Henry Wright
ModeratorThere are a few articles that could be useful to you. Check out:
May 9, 2016 at 6:50 am #253233In reply to: No activation emails (WP mails are working)
LavishDhand
ParticipantI had no idea that creating a BuddyPress email template was necessary. Just created one and now it’s working.
Thank you
May 8, 2016 at 9:02 am #253219In reply to: Visual editor not working
andy60rm
Participant-
Resolution today
my personal steps
1. restore latest wp backup with version 4.5.1
2. complete remove of buddypress
3. disactivation of the following plugins (i don’t know exactly the cure but bp works now)INACTIVE Cryout Serious Theme Settings 0.5.6
INACTIVE Huge IT Slider 3.1.82
INACTIVE mathtex latex equation editor 1.1.5
INACTIVE Ultimate Tables 1.6.3
INACTIVE WP-Polls 2.73
INACTIVE WP-Pro-Quiz 0.37May 7, 2016 at 11:00 pm #253211In reply to: virtual kiss or wink
danbp
ParticipantMaybe this one ?
https://wordpress.org/plugins/buddypress-compliments/May 6, 2016 at 12:25 pm #253181In 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.
-
AuthorSearch Results
