-
Henry Wright replied to the topic Undefined property: stdClass::$register in the forum How-to & Troubleshooting 10 years ago
If so, make sure you assign that page to your BuddyPress “register” page under the BuddyPress admin menu.
-
Henry Wright replied to the topic Undefined property: stdClass::$register in the forum How-to & Troubleshooting 10 years ago
Do you have a page set up in your WordPress admin area with a slug of register?
-
Paul Wong-Gibbs replied to the topic How to Remove Buddypress Registration in the forum How-to & Troubleshooting 10 years ago
Do not edit core BuddyPress files. Next update, it’ll be replaced and you’ll have to do it all over again.
-
Henry Wright replied to the topic BuddyPress no longer working with 4.5 update in the forum How-to & Troubleshooting 10 years ago
Can you list the plugins you have activated and any custom code snippets you’re using?
-
Hugo Ashmore replied to the topic CSS background for Profile page only? in the forum How-to & Troubleshooting 10 years ago
@mtgame21 We attempted to comprehensively provide classes on the body element to cover and catch as many conditions in BP so check those classes – as Henry points out – on the body element. The first you’ll possibly notice is ‘.bp-user’ to cover all instances of a users account screens. As an example if you’re looking at your profile screen you…[Read more]
-
laodigital's profile was updated 10 years ago
-
Henry Wright replied to the topic How to get the page ID associated with a component in the forum Miscellaneous 10 years ago
Thanks for sharing, @garrett-eclipse 🙂
-
Henry Wright replied to the topic Changing the word Groups in the forum Miscellaneous 10 years ago
Check out the
gettextfilter:https://codex.wordpress.org/Plugin_API/Filter_Reference/gettext
-
Henry Wright replied to the topic Adsense on activity stream? in the forum How-to & Troubleshooting 10 years ago
Ok I finaly did it!!
Great 🙂
-
Paul Wong-Gibbs replied to the topic email notifications stopped for @ mentions, replies in the forum How-to & Troubleshooting 10 years ago
BuddyPress 2.5 made a lot of changes to how BuddyPress works with emails. We’ve been making incremental fixes and compatibility improvements in each release since, and we have v2.5.3 almost ready for sometime in the next couple of weeks or so.
People still having problems could try running…[Read more]
-
Paul Wong-Gibbs replied to the topic How to Remove Buddypress Registration in the forum How-to & Troubleshooting 10 years ago
If you delete the page, I think you can probably just ignore that banner notification. It’s only telling you that the page isn’t set, but you already know that, because you’ve done it on purpose.
There isn’t a way to remove the nag message.
-
Paul Wong-Gibbs replied to the topic WP Notices after installation in the forum Installing BuddyPress 10 years ago
Thanks. This isn’t actually a bug in BuddyPress, but we flag it to reveal code in other plugins running at the wrong time because quite often this can cause very subtle problems in BuddyPress and other plugins.
We’ve very recently adjusted the messaging to make it clearer which plugin is causing us to trigger this notice:…[Read more]
-
Henry Wright replied to the topic Adsense on activity stream? in the forum How-to & Troubleshooting 10 years ago
entry.php is the code that displays a member in the loop. If you have 300 members and you paste the ad code into entry.php then the ad will display 300 times.
-
Henry Wright replied to the topic [Resolved] BBPress forum search not working in the forum Installing BuddyPress 10 years ago
…how can you get someone to look at a query
The forum is volunteer run and there’s no way to get paid support. We don’t usually advise this but I guess you could try bumping your topic?
-
Henry Wright replied to the topic [Resolved] BBPress forum search not working in the forum Installing BuddyPress 10 years ago
Hi @janeakshar
Try asking over at bbPress. They should be able to help with bbPress-related questions like this.
-
Henry Wright replied to the topic Adsense on activity stream? in the forum How-to & Troubleshooting 10 years ago
How are you adding the ad to the stream?
-
Henry Wright replied to the topic CSS background for Profile page only? in the forum How-to & Troubleshooting 10 years ago
Check your page source to see if body classes are utilised by your theme. Then you can do:
body.classname #selector .etc {
// Stuff.
} -
gez4s replied to the topic Send email after rejection in the forum Creating & Extending 10 years ago
Got it! 🙂 $friendship->initiator_user_id
-
gez4s replied to the topic Send email after rejection in the forum Creating & Extending 10 years ago
How can i catch the id of the person (initiator) who send me the request?!
-
Henry Wright replied to the topic Notification count if 0 dont display? in the forum How-to & Troubleshooting 10 years ago
Try this:
$count = bp_notifications_get_unread_notification_count( bp_loggedin_user_id() );
if ( $count > 0 ) {
echo $count;
} else {
// The notif count is 0.
} - Load More