-
shanebp replied to the forum topic invitation accepted in the group Invite Anyone 13 years, 4 months ago
The same thing happens on the ‘Manage Invitations’ screen.
The ‘accepted’ column always shows just a – .
Even for test invites that were accepted. -
shanebp started the forum topic invitation accepted in the group Invite Anyone 13 years, 4 months ago
Where is the data stored when a member accepts an invitation?
Everything is working, except there is no indication of whether an invitation was accepted.
For example, the stats screen – Accepted : always shows a dash. […] -
shanebp posted on the forum topic BUDDYPRESS.ORG is broken! in the group How-To and Troubleshooting 13 years, 4 months ago
@boone –
I used to be able to see a list of my forum posts.
That is no longer available.
They used to show up under the activity tab.
It was very helpful to review prior forum postsI tried Forums -> Topics Started […]
-
shanebp posted an update 13 years, 5 months ago
@mistercyril Let’s set a time (PST here).
My skype name is ’sam3dus’ -
shanebp posted a new activity comment 13 years, 5 months ago
Let’s set a time (PST here).
My skype name is ‘sam3dus’ -
shanebp joined the group BP Jobs Board 13 years, 5 months ago
-
shanebp posted an update 13 years, 5 months ago
@mistercyril Hi,
I can help you with this.
It would be better to use a separate table.
The table would hold the member id and the id(s) of who they assist.
I did something similar recently for a blocking member(s) option for a BP site with over 7000 members. -
shanebp started the forum topic friends online in the group How-To and Troubleshooting: 13 years, 5 months ago
members-loop.php lists all the friends of a member. I need to modify it to also show which of those friends is online. And not interfere with pagination. I tried using bp_get_member_user_id() and sending it to another function that uses bp_has_members type=online&include=user_id but there seems to be a conflict between using bp_has_members twice…[Read more]
-
shanebp posted on the forum topic bp_has_members – multiple search terms? in the group How-To and Troubleshooting: 13 years, 5 months ago
Did the task by getting all the user_ids for $zipcodes and then using them in a string – include=string
$filter_members = ‘include=’ . $zip_ids . ‘&type=online&per_page=999&populate_extras=0’;But would still like to know if it is possible to use multiple terms in ‘search terms’ ?
-
shanebp started the forum topic bp_has_members – multiple search terms? in the group How-To and Troubleshooting: 13 years, 5 months ago
I trying to filter online members based on multiple zipcodes (from a radial search). Is there a way to use multiple terms in ‘search terms’ ? Or is there some other way to accomplish this (which does not work) : ` //$zipcodes = “21345, 33445, 23239”; $zipcodes = array(“21345, 33445, 23239”); $filter_members =…[Read more]
-
shanebp posted on the forum topic Changing sequence of profile tabs – remove activity in the group How-To and Troubleshooting: 13 years, 5 months ago
define(“BP_DEFAULT_COMPONENT”,”profile”);
https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/
-
shanebp posted on the forum topic non members block in the group How-To and Troubleshooting: 13 years, 6 months ago
Create a file called bp-custom.php – it will go in your plugins directory. Put this code in it:
function visitor_intercept(){ global $bp_unfiltered_uri; if ( !is_user_logged_in() ) { if ( ($bp_unfiltered_uri == BP_MEMBERS_SLUG) || ($bp_unfiltered_uri == BP_ACTIVITY_SLUG) ) { bp_core_redirect( get_option('siteurl')."/some-page" ); } } } add_action(…
[Read more] -
shanebp posted on the forum topic Friendship could not be requested in the group How-To and Troubleshooting: 13 years, 6 months ago
I forgot the ajax file in the _inc folder in the child theme – fixed.
-
shanebp posted on the forum topic Friendship could not be requested in the group How-To and Troubleshooting: 13 years, 6 months ago
The usual way – trial and error.
-
shanebp posted on the forum topic How to display if the User is Online or Not in the Forum Topic and Profile in the group How-To and Troubleshooting: 13 years, 6 months ago
Add this before the function
global $bp; -
shanebp posted on the forum topic Friendship could not be requested in the group How-To and Troubleshooting: 13 years, 6 months ago
It’s just a hack, across various php files Add a block/unblock button on profile pages When clicked either add or remove a row from a blocked_users db table via function in bp-custom Check that table in bp-messages when sending messages & notifications Check that table in bp-friends when a friend request is made Works fine […]
-
shanebp started the forum topic Friendship could not be requested in the group How-To and Troubleshooting: 13 years, 6 months ago
BP – Version 1.2.7 WP – version = 3.0.4 I’m adding some simple member blocking. Everything works fine except for one annoying issue with friendship requests. When Member A does a friend request on Member B who has blocked them, for Member A the text “Add Friend” changes to “Friendship could not be requested”. I […]
-
shanebp posted on the forum topic links in activity content in the group How-To and Troubleshooting: 13 years, 6 months ago
So any update can only have one link in it?
I don’t have a function for you, but I’d say you need to count the number of hrefs.
For anything over 1, remove everything between and including the href open and close tags.
Of course, the resulting update may not make sense, english-wise. -
shanebp posted on the forum topic links in activity content in the group How-To and Troubleshooting: 13 years, 6 months ago
Got this to work by setting add_filter priority to 12
Remember to also filter on bp_get_activity_latest_update to handle links in member-header
- Load More
@shanebp
Active 18 hours, 31 minutes ago