-
r-a-y posted a new activity comment 15 years, 10 months ago
hempsworth should maybe think about adding a filter so the bp-like plugin isn’t solely dependent on friends.
Then anyone could easily override this.
-
r-a-y posted a new activity comment 15 years, 10 months ago
Not necessarily, you need to find the correct function that outputs the follower IDs. Dig around the buddypress-followers plugin.
-
r-a-y posted a new activity comment 15 years, 10 months ago
It doesn’t have to be a certain name. Just rename the folder to anything, then refresh your site. If it comes back up, simply remove that folder afterwards.
-
r-a-y posted on the forum topic Fatal Error in the group How-To and Troubleshooting: 15 years, 10 months ago
Hi eyg1,
I already replied to this in your update.
For future reference, please refrain from posting about your problem in multiple places as that is unnecessary.
-
r-a-y posted a new activity comment 15 years, 10 months ago
That’s an old plugin. I would suggest removing it.
Login to your FTP and rename the “bppicture-album” folder to something else.
Make sure your site is back up, then remove the folder. -
r-a-y posted a new activity comment 15 years, 10 months ago
It’s because you disabled the friends component. I’m guessing you’re using the BP Followers plugin in its place. You’ll need to modify that to use follower ID code.
-
Well done that man. Thanks r-a-y, so I need to modify the bp like plugin everytime it says friends to say follower, right?
-
Not necessarily, you need to find the correct function that outputs the follower IDs. Dig around the buddypress-followers plugin.
-
hempsworth should maybe think about adding a filter so the bp-like plugin isn’t solely dependent on friends.
Then anyone could easily override this.
-
-
-
-
r-a-y posted on the forum topic Why are my blog post updates missing paragraph breaks when shown in the activity stream? in the group How-To and Troubleshooting: 15 years, 10 months ago
Ahh, I understand why it doesn’t work right now.
It’s because BuddyPress 1.2.6 hasn’t been released yet with the updated patch.If you can’t wait for BP 1.2.6, make the following change:
https://trac.buddypress.org/changeset/3132 -
r-a-y posted on the forum topic oEmbed for BP 0.6-beta available! in the group oEmbed for BuddyPress: 15 years, 10 months ago
New oEmbed for BP build fixes URL matching with certain providers like Photobucket:
https://downloads.wordpress.org/plugin/oembed-for-buddypress.zipPlease test! I want to get this out the door in the next day or two
-
r-a-y posted on the forum topic Which function should I call to send private message? in the group How-To and Troubleshooting: 15 years, 10 months ago
Just looking over the parameters again, it appears that the “recipients” parameter should be an array.
So try changing that.PMs and other BP components can be enabled/disabled from the “BuddyPress > Component Setup” page in the WP admin dashboard.
-
r-a-y posted on the forum topic Group Activity Feed in the group How-To and Troubleshooting: 15 years, 10 months ago
You have to modify the code from that other post to work for groups.
Use a conditional like bp_is_group_home(), then modify the query string to add the “user_id” parameter for the group admin.
http://pastebin.com/Fv5kPuBkModify to your liking.
-
r-a-y posted on the forum topic Activity stream bug? in the group How-To and Troubleshooting: 15 years, 10 months ago
“Activity > Groups” works for me. I see only group activity here.
I’m getting the opposite behaviour.
Under “Activity > Personal”, I get all the activity I’ve made including groups. -
r-a-y posted on the forum topic Which function should I call to send private message? in the group How-To and Troubleshooting: 15 years, 10 months ago
I can see potential problems with that $args variable you have setup. Try setting up the arguments as an array.
$args = array( 'recipients' => $user_id, 'sender_id' => 11, 'subject' => $title, 'content' => $message );If PMs are disabled, the code will not run. In fact, most likely you’ll get an undefined function […] -
r-a-y posted on the forum topic "Join Group" link does nothing on my site in the group How-To and Troubleshooting: 15 years, 10 months ago
To be fair, this is a third-party theme, I’d recommend contacting the authors of that Buddymatic child theme:
http://freebpthemes.com/themes/early-morning/Also follow the instructions listed in the post.
-
r-a-y posted on the forum topic Kick (but not ban) a user from a a group? in the group How-To and Troubleshooting: 15 years, 10 months ago
I actually brought this up a long time ago when I was a BP noob 😉
Seems like BP is missing a “Remove from group” option in the manage members screen.
This functionality could be added using the groups_leave_group() function.Needs some investigating.
-
r-a-y posted on the forum topic How I create a tab Reviews like in the plugins? in the group How-To and Troubleshooting: 15 years, 10 months ago
If you want to emulate the reviews functionality for groups, then I’d recommend building it off the awesome Group Extension API:
https://codex.buddypress.org/developer-docs/group-extension-api/It’s actually not that hard to build it.
-
r-a-y posted on the forum topic Singular Activity Stream in the group How-To and Troubleshooting: 15 years, 10 months ago
Look at the pretty red arrows! 🙂
-
r-a-y posted on the forum topic Why are my blog post updates missing paragraph breaks when shown in the activity stream? in the group How-To and Troubleshooting: 15 years, 10 months ago
I forgot to mention that this won’t fix existing blog posts in the activity stream.
See if new posts work.FYI, if you’re going to be making changes to the bp-default theme, it’s better to create a child theme:
https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/ -
r-a-y posted on the forum topic Deleting Individual User's Avatar in the group How-To and Troubleshooting: 15 years, 10 months ago
Nope, no DB entries for avatars!
-
r-a-y posted on the forum topic Sticky how to's? in the group Requests & Feedback: 15 years, 10 months ago
Stickies in the support group forums are broken and we have no way to super-sticky them at the very top of the main “Support” or “Community” pages. When Boone gets a chance to tackle some of the site’s issues, I’ll propose this to him 😉 I did start something on the current codex: https://codex.buddypress.org/getting-started/faqs/specific-faqs/…[Read more]
-
r-a-y posted on the forum topic Why are my blog post updates missing paragraph breaks when shown in the activity stream? in the group How-To and Troubleshooting: 15 years, 10 months ago
Notice how I’m linking to a specific post in the thread, rather than the beginning?
The post I’m linking to should allow you to override the BP-truncated excerpt with the original content.
I’ve updated the post above with a direct link to the code I’m referring to.Add the snippet to your theme’s functions.php.
- Load More
@r-a-y
Active 5 months ago
hempsworth should maybe think about adding a filter so the bp-like plugin isn’t solely dependent on friends.
Then anyone could easily override this.