What happened to the plugin “BP Hide User” from r-a-y? I can’t find it anymore on wordpress.org, it did worke well.
You can’t copy and paste WordPress unfortunately. You’ll need to set up a database and upload the core files then run an install script. Check with your hosting company as a 1-click install might be available.
Hello does anyone know how to display links on wordpress post pages for the author of the posts buddypress profile link, send the author a private message and add friend with an if statement to check that the user isnt the author and if so echo nothing?
Would be extremely helpful!
Thank you!
WordPress Version 4.4.3
BuddPress Version 2.4.3
link – http://dev.inclusivetech.net/hammydowns/
Although you need to be logged in to see the button on the listings page.
Ok so obviously I have researched this matter on these forums before and have found useful
advice that i have used to make the button work. The one issue I am having trouble with
is pre-filling the messages subject field with the title of the item they wish to
message the user about.
The link works well and the user(Send To) field that the message is being sent to is correctly filled in after clicking on the button to message that person, similar to visiting a members profile page and then clicking private message.
I created the bp-custom.php file to achieve putting the link on the listings page. The code in there is as follows:
function bp_custom_get_send_private_message_link($to_id,$subject=false,$message=false) {
//if user is not logged, do not prepare the link
if ( !is_user_logged_in() )
return false;
$compose_url=bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?';
if($to_id)
$compose_url.=('r=' . bp_core_get_username( $to_id ));
if($subject)
$compose_url.=('&subject='.$subject);
/*if($message)
$compose_url.=("&content=".$message);*/
return wp_nonce_url( $compose_url ) ;
}
//for auto populating message content
add_filter(‘bp_get_messages_content_value’,’bp_custom_message_content_value’);
function bp_custom_message_content_value($content){
if(!empty ($content))
return $content;
$content=$_REQUEST[‘content’];
return $content;
}
Again this works well but for some reason this line of code does not seem to be effecting my messages
subject field at all. $compose_url.=(‘&subject=’.$subject);
I am calling the function correctly and the resulting http address is http://dev.inclusivetech.net/hammydowns/members/admin/messages/compose/?r=tvolmari&subject=Leather+Wallet&_wpnonce=181a9404ae
so I can see the subject title is being passed but it won’t populate my messages subject field.
Does anyone have any possible advice on how to solve this??? Or maybe a least a new direction
I should start to look at to figure it out? I’m starting to run out of idea’s.. haha
Any help would be appreciated thx
I think this should be a question for the core team. You should post it on Trac:
https://buddypress.trac.wordpress.org
I am using a wordpress theme – called WOffice.. Should I contact them?
Hi,
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:
TEstREg
Can you help me solve this problem?
Thanks,
Miguel
When I visit my group pages (wp-admin/edit.php?post_type=gpages)
Some of my groups doesn’t have a “Visit” link (on the “Group links” column)
And some does have a “Visit | Edit” Link show up.
I’m wondering if anyone knows why the “Visit | Edit” link is missing from some of my groups?
It seems to me that my group with missing “Visit” link is just a Group page, not a group.
If anyone can shed a light on that, that will be much appreciated.
I’m using BuddyPress 2.3.5
WordPress 4.2.8
Hi guys,
I’m reporting one issue involving following software versions:
WP 4.5.2
TwentySixteen 1.2
BuddyPress 2.5.2
Slider Revolution 5.2.5.1
Basically, basic WP setup plus two plugins. The thing is, when BuddyPress and Slider Revolution are both activated, error message is as follows:
( ! ) Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in D:\htdocs\wp-includes\functions.php on line 3897
Thanks in advance for any assistance.
Hi @djpaul @imath @boonebgorges I would just like to suggest a feature request, regarding your trac tickets https://buddypress.trac.wordpress.org/ticket/5644
There are two extra loop parameters/arguments I would really love to see.
- 1. to show a list of activity posts in order of the most favorited. From the most favorited activity posts to least favorited activity posts.
- 2. A time range paramater to show a list of activities within a specified time range such as last 12 hours, 24 hours, 1 week etc.
These two loop arguments can be used together to create a list of trending activity posts.
For example (I’m not great with code, but you’ll understand what I mean) –
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&max=10&range=24hours&sort=most_favorited' ) ) : ?>
<?php while ( bp_activities() ) : bp_the_activity(); ?>
<?php locate_template( array( 'activity/entry.php' ), true, false ); ?>
<?php endwhile; ?>
<?php endif; ?>
So the above code will show the top 10 most favorited posts in the last 24 hours 🙂
Thanks.
WordPress 4.5.2
BuddyPress 2.5.2
Site URL – http://goo.gl/Fo2xEA
Hi!
If any member on my site edits her / his Buddypress profile (front end) Or a new member registers, she / he has no name.
Their Buddypress pages will have NO meta title information accept ‘SITE NAME’.
See example (screen shots) : there is no name for a newly registered member or to a member edited her / his profile –
View post on imgur.com
Need urgent help please
Thank you
WordPress 4.5.2
BuddyPress 2.5.2
Hi!
I have moved my website from one Godaddy hosting account to other, it always worked fine before the move. No BuddyPress activation emails are being sent now.
What have I tried so far? I have tried –
1 – switching to Twenty Twelve, Twenty Thirteen, Twenty Fourteen etc themes
2 – with Other plugins deactivated
3 – SMTP (Gmail), when mail() did not work
4 – MailGun. I am on MailGun now, configured to my domain name
5 – with BP Email to WP Mail From Bridge plugin on and off. In all above conditions.
I can send contact form7 messages without a problem, which makes me think that WordPress mails are working fine. I have not been able to send a single BP activation email after the move.
Kindly help
Thank you
WordPress Version 4.4.3
BuddPress Version 2.4.3
link – http://dev.inclusivetech.net/hammydowns/
Although you need to be logged in to see the button on the listings page.
Ok so obviously I have researched this matter on these forums before and have found useful
advice that i have used to make the button work. The one issue I am having trouble with
is pre-filling the messages subject field with the title of the item they wish to
message the user about.
The link works well and the user(Send To) field that the message is being sent to is correctly filled in after clicking on the button to message that person, similar to visiting a members profile page and then clicking private message.
I created the bp-custom.php file to achieve putting the link on the listings page. The code in there is as follows:
function bp_custom_get_send_private_message_link($to_id,$subject=false,$message=false) {
//if user is not logged, do not prepare the link
if ( !is_user_logged_in() )
return false;
$compose_url=bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?';
if($to_id)
$compose_url.=('r=' . bp_core_get_username( $to_id ));
if($subject)
$compose_url.=('&subject='.$subject);
/*if($message)
$compose_url.=("&content=".$message);*/
return wp_nonce_url( $compose_url ) ;
}
//for auto populating message content
add_filter(‘bp_get_messages_content_value’,’bp_custom_message_content_value’);
function bp_custom_message_content_value($content){
if(!empty ($content))
return $content;
$content=$_REQUEST[‘content’];
return $content;
}
Again this works well but for some reason this line of code does not seem to be effecting my messages
subject field at all. $compose_url.=('&subject='.$subject);
I am calling the function correctly and the resulting http address is http://dev.inclusivetech.net/hammydowns/members/admin/messages/compose/?r=tvolmari&subject=Leather+Wallet&_wpnonce=181a9404ae
so I can see the subject title is being passed but it won’t populate my messages subject field.
Does anyone have any possible advice on how to solve this??? Or maybe a least a new direction
I should start to look at to figure it out? I’m starting to run out of idea’s.. haha
Any help would be appreciated thx 🙂
Don’t forget activity comments are different to WordPress post comments so you’ll need to find the right action for those to work.
After installing Buddypress plugin, visual editor does not works correctly.
Wordpress 4.5.2
BuddyPress latest version
Plugins installed
=================
BAW Login/Logout menu 1.3.3.
Contact Form 7 4.4.2
Contact Form DB 2.10.9
Cryout Serious Theme Settings 0.5.6
Huge IT Slider 3.1.82
Limit Login Attempts 1.7.1
Link Library 5.9.12.18
LinkedIn Auto Publish 1.3.2
mathtex latex equation editor 1.1.5
New User Approve 1.7.3
Peter’s Login Redirect 2.9.0
Recent Posts Widget With Thumbnails 4.9.2
SI CAPTCHA Anti-Spam 2.7.7.7
Simple Share Buttons Adder 6.1.5
TablePress 1.7
Testimonials Widget 3.3.0
Tooltips 3.5.9
Twitter Follow Button 1.0.2
Ultimate Tables 1.6.3
User Access Manager 1.2.6.7
WP Content Copy Protection Premium (YOOPlugins) 1.8.32
WP Statistics 10.1
WP Support Plus Pro 7.0.1
WP Twitter Feeds 1.4.8
WP-Polls 2.73
WP-Pro-Quiz 0.37
WP-SpamShield 1.9.8
BuddyPress version Version 2.5.2
WordPress 4.5.1
Please go to http://p3georgia.org/connect-and-contribute/ and select Click here to enter the forum under Discussion Boards. We have this message: Warning: strstr(): Empty needle in /home/content/p3nexnas05_data01/40/2123640/html/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 569
thats becuase oEmbed is now inbuilt in wp core…this might help https://wordpress.org/plugins/disable-embeds/
using this in my bp setup https://wordpress.org/plugins/wise-chat/ and works very well
if you want p2p individual chat like FB then you need to buy the pro version which is $49
This 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
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
You can create an enhancement ticket here using the same login as you use for these forums.
The page you linked to describes how to add a web notification. The example on that page hooks to the bp_activity_sent_mention_email action which means every time bp_activity_sent_mention_email is executed, a web notification will be sent. In your case, you’d still use bp_notifications_add_notification() to send the notification but you will want to send a notification to a particular member only if a friend of that member has a birthday.
The wp_schedule_event() function might be helpful to you: https://codex.wordpress.org/Function_Reference/wp_schedule_event
If 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.