-
Henry Wright replied to the topic Vendor registration is currently closed. If you have an existing account, you ma in the forum How-to & Troubleshooting 9 years ago
Vendor registration is currently closed. if you have an existing account, you may log in and apply to become a vendor
Are you sure this line of text is associated with BuddyPress? What plugins do you have activated? And also what theme? It could be coming from one of those?
-
Henry Wright replied to the topic Strange links in Buddypress profiles in the forum How-to & Troubleshooting 9 years ago
No problem ๐
-
Henry Wright replied to the topic Strange links in Buddypress profiles in the forum How-to & Troubleshooting 9 years ago
Make sure you have no white space at the start of bp-custom.php.
This might cause the “headers already sent” error:
<?php
Your code..This is the same file with whitespace removed:
<?php
Your code.. -
Henry Wright replied to the topic "Profile" shown in navibar 3 times in the forum How-to & Troubleshooting 9 years ago
The first link will take you to the profile edit screen. I’m not sure why you see the 2nd? I see “Personal”, “Mentions” and “Favourites”. The 3rd option takes you to your profile settings page.
-
Henry Wright replied to the topic Vendor registration is currently closed. If you have an existing account, you ma in the forum How-to & Troubleshooting 9 years ago
How do I remove buddyPress completely from my wordpress and restore everything as pre-installation of BuddyPress?
You can just deactivate the plugin and remove the “Register” and “Activate” pages you created at Dashboard > Pages.
-
Henry Wright replied to the topic Buddypress and Calypso? in the forum How-to & Troubleshooting 9 years ago
@ronia BuddyPress uses the admin area too ๐
-
Henry Wright replied to the topic Strange links in Buddypress profiles in the forum How-to & Troubleshooting 9 years ago
Hi @koreancandy
Looking at the Name and Location profile fields, they’re also linked? To remove these links, check out the bp-custom.php article.
-
Henry Wright replied to the topic php fatal error $message->send() in the forum How-to & Troubleshooting 9 years ago
If I have no recipients I get a php error.
Are you sure the problem is you have no recipients?
Once
messages_control()
returns, the following code is executed immediately:if ( empty( $this->recipients ) )
return false;Ref:…[Read more]
-
Henry Wright replied to the topic Buddypress and Calypso? in the forum How-to & Troubleshooting 9 years ago
It’s likely that nobody has even thought about this yet because Calypso is so new. Check out these instructions if you want to install it: https://github.com/Automattic/wp-calypso/blob/master/docs/install.md
Also, there are various projects in progress for BuddyPress. Here’s one example:
-
Henry Wright replied to the topic Buddypress and Calypso? in the forum How-to & Troubleshooting 9 years ago
It’s likely that nobody has even thought about this yet because Calypso is so new. Check out these instructions if you want to install it: https://github.com/Automattic/wp-calypso/blob/master/docs/install.md
Also, there are various projects in progress for BuddyPress. Here’s one example:
-
Henry Wright replied to the topic Adding a new component to BuddyPress in the forum How-to & Troubleshooting 9 years ago
These requirements are very custom so I doubt there will be a plugin available. My advice is to take a look through the core project code to familiarise yourself with how BuddyPress works. There’s also a BuddyPress Skeleton Component you can use (check out the comments) to learn how to create a new component should you need one.
-
Henry Wright replied to the topic want to add more fields to "Post Update" form in the forum How-to & Troubleshooting 9 years ago
You should look at bp-templates/bp-legacy/buddypress/activity/post-form.php, making changes if necessary using the BuddyPress Template Hierarchy article as a guide.
-
Henry Wright replied to the topic bp_get_member_user_id() returns false in the forum How-to & Troubleshooting 9 years ago
The likely reason why
bp_get_member_user_id()
is returningNULL
is you are using it outside the members loop. See the Playing with the userโs ID in different contexts article for info on how to get the member’s ID in the various contexts that exist within BP. -
Henry Wright replied to the topic groups_member_before_save messages not showwing up in the forum How-to & Troubleshooting 9 years ago
The
groups_member_before_save
hook doesn’t really give you the opportunity to exit execution gracefully if your member doesn’t validate. Is there another hook that you can use?I suppose you could force execution to stop by adding a redirect after
bp_core_add_message()
but that feels slightly hackish:bp_core_add_message( $message, 'error'…
[Read more] -
Henry Wright replied to the topic groups_member_before_save for restricting one group per user in the forum How-to & Troubleshooting 9 years ago
After a particular member has reached the 1 private group limit, you’d probably want to stop the member:
requesting to join a new private group
from being invited to join a private group
from creating a new private groupYou mention the member can belong to multiple public groups so your checks should be specific for private groups (also…[Read more]
-
Henry Wright replied to the topic Disable messages in Activity Stream in the forum How-to & Troubleshooting 9 years ago
I have no idea if this plugin still functions because it was last updated ~4 years ago, but check out BuddyPress Block Activity Stream Types.
-
Henry Wright replied to the topic How to update avatar user meta? in the forum How-to & Troubleshooting 9 years ago
in the API results I have a url of the avatar
Does the result give you the user ID as well?
-
Henry Wright replied to the topic How to update avatar user meta? in the forum How-to & Troubleshooting 9 years ago
How are you uploading the image?
-
Henry Wright replied to the topic How to update avatar user meta? in the forum How-to & Troubleshooting 9 years ago
Yeah the
BP_Attachment
class is awesome!the only problem is that it depends on a $_FILES variable
I’m wondering why that’s a problem?
-
Henry Wright replied to the topic Change BuddyPress Activity Stream Order in the forum How-to & Troubleshooting 9 years ago
Check out the Using bp_parse_args() to filter BuddyPress template loops article. Specifically, you’d want to make use of
date_query
, which should be an array of date query clauses. - Load More
@henrywright
Active 8 months, 1 week ago