Search Results for 'buddypress'
-
AuthorSearch Results
-
May 12, 2016 at 12:57 pm #253323
In reply to: Set order members in the search results
stefannita
ParticipantSorry for repost.
“Unfortunately BP Profile Search cannot alter the order of results, that’s controlled by BuddyPress instead (Order By: Last Active / Newest Registered / Alphabetical). “
May 11, 2016 at 7:32 pm #253306In reply to: There was a problem cropping your profile photo.
dcrowe
ParticipantI am having the same issues. I can upload and set the crop marks but then when I click save I get “There was a problem cropping your profile photo.”
I have updated buddypress and bbpress, made sure my file permissions on the avatar and uploads folder are set to 777
No clue why this is happening.
May 11, 2016 at 6:18 pm #253304In reply to: not receiving account confirmation email
Jot
ParticipantGoodnight. Since the last update, buddypress not send emails validating new user accounts. I checked the plug smtp.wordpress and working properly. The problem occurs at the time of registration of a new user.
May 11, 2016 at 9:11 am #253294In reply to: BP Custom Message HTML breaks AJAX – why?
justarandomuser
ParticipantOK AJAX is now working. I use now the $GLOBAL variable from WordPress.
Just the new message, whoch is appended my AJAX, is not correctly dispayed. Will continue to find the problem.
It looks like the AJAX response (new message) is appended right after <form …> and before the next <div ….>
<form id="send-reply" action="<?php bp_messages_form_action(); ?>" method="post" class="standard-form"> <div class="conv-textarea"> <?php //do_action( 'bp_before_message_reply_box' ); ?> <textarea name="content" id="message_content" class="auto-height" placeholder=""></textarea> <?php //do_action( 'bp_after_message_reply_box' ); ?> <div class="conv-bottom"> <?php //do_action( 'bp_after_message_reply_box' ); ?> <div class="submit"> <input type="submit" name="send" value="<?php esc_attr_e( 'Send Reply', 'buddypress' ); ?>" id="send_reply_button"/> </div> <input type="hidden" id="thread_id" name="thread_id" value="<?php bp_the_thread_id(); ?>" /> <input type="hidden" id="messages_order" name="messages_order" value="<?php bp_thread_messages_order(); ?>" /> <?php wp_nonce_field( 'messages_send_message', 'send_message_nonce' ); ?> </div> </div> </form>Very strange to put a message there.
May 10, 2016 at 5:06 pm #253285In reply to: PHP 7.0 compatibility
justarandomuser
ParticipantYes sir.
Just found the problem:
my import of my SQL file was a little bit failed. Everything was fine but BuddyPress was corrupted – I don’t know why! Fixed it!Now I can test PHP7. First opinion: it’s sensible faster on localhost.
I’ll install PHP7 later on my Debian Server to test.
May 10, 2016 at 3:08 pm #253283In reply to: [Resolved] How to Hide Admin accounts 2016?
semperaye
ParticipantThere is this code posted by someone on this thread 2.5 years ago:
https://buddypress.org/support/topic/hide-certain-admins-as-being-online/
/* disable Recording Site Activity for Admins */
add_action(“bp_loaded”,”bpdev_init_sm_mode”);
function bpdev_init_sm_mode(){
if(is_super_admin())
remove_action(“wp_head”,”bp_core_record_activity”);//id SM is on, remove the record activity hook
}
/* ——————————————– */But not sure if that is custom css, or if that is something that needs to be placed in the bp-custom.php file? Also, that code appears to only block admin activity, not profile, and members list….
Is there a way to do all of this via some custom CSS? That would obviously be the easiest way to solve this since there are no currently working plugins.
May 10, 2016 at 3:07 pm #253282In reply to: CSS causing cover image to disappear.
jameshh93
Participant@fakrulislam thank you!! Coincidentally I was having trouble with this with twentysixteen and just creating a stylesheet in buddypress/css and now the cover image appears thanks to that code! YAY!!!!!!!!!!!!!!!!!!!!!!!
May 10, 2016 at 3:01 pm #253280In reply to: PHP 7.0 compatibility
justarandomuser
ParticipantI just tested my whole Website with PHP7.
I have 19 PlugIns activated. 18 are working fine – except BuddyPress.I really don’t know why but even simple functions like “messages_get_unread_count()” get an Fatal Error: Uncaught Error: Call to undefined function messages_get_unread_count().
bp_get_messages_slug and many more gives me the same error.
Can anyone help?
May 10, 2016 at 9:02 am #253271In reply to: How to change options for user delete the account?
Henry Wright
ModeratorDo you mean like a deactivate option? That isn’t available right now in BuddyPress.
May 10, 2016 at 3:31 am #253267In reply to: Bussdypress title and SEO Yoast problem
r0z
ParticipantI solved this error without having to disable the SEO in BuddyPress pages, and without having to touch the core of the plugin.
I’ll leave here (add in functions.php):function wpseo_fix_title_buddypress($title) { // Check if we are in a buddypress page if (function_exists( 'buddypress') && buddypress()->displayed_user->id || buddypress()->current_component ) { $bp_title_parts = bp_modify_document_title_parts(); // let's rebuild the title here $title = $bp_title_parts['title'] . ' ' . $title; } return $title; } add_filter( 'wpseo_title', 'wpseo_fix_title_buddypress');maybe this code or something similar would need to be implemented in Yoast SEO plugin… maybe.
May 10, 2016 at 1:22 am #253265In 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 9:54 pm #253258diverpt
ParticipantHi,
I use wordpress version 4.5.2 and buddypress version 2.5.2
I installed the Ultimate Membership Pro on my site to improve the registration of students, but the site does not recognize the slug.
I put the slug on the registration page but it is always replaced by the original site.
The Ultimate Membership Pro Support logged on my website and said it is a problem with BuddyPress that leaves not recognize the Ultimate Pro Membership form.I tested on another page and recording works perfectly.
See the link below:Can you help me solve this problem?
Thanks,
MiguelMay 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 text -
AuthorSearch Results
