-
r-a-y posted on the forum topic How to make replies to a blog post *logical* from activity stream? in the group How-To and Troubleshooting 13 years, 4 months ago
bp-album uses the activity stream to add comments.
Blog post != activity stream.
What I’d recommend is to disable activity replies for blog posts and comments.
To do this, login to your WP dashboard and navigate to “BuddyPress […]
-
r-a-y posted on the forum topic How to show activity from ALL the members of a GROUP in the group How-To and Troubleshooting 13 years, 4 months ago
Check out the activity stream loop:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/You’ll need to pass the “object” param as “groups” and the “primary_id” param as the group […]
-
r-a-y posted on the forum topic Detect if user is viewing their own profile? in the group How-To and Troubleshooting 13 years, 4 months ago
bp_is_my_profile() is the function you’re looking for.
if ( bp_is_my_profile() )
echo ‘hello logged in user who is looking at their own profile!’; -
r-a-y posted on the forum topic change feel of site in the group How-To and Troubleshooting: 13 years, 5 months ago
Read this codex article:
https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/ -
r-a-y posted on the forum topic more control over 'site activity' notifications in the group How-To and Troubleshooting: 13 years, 5 months ago
There’s a plugin for this, but it needs to be updated so the admin setting page link works in newer versions of WP:
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/To fix the admin menu problem, read this:
http://code.ipstenu.org/2011/wordpress-3-1-network-menu/ (also read the comments on that post) -
r-a-y posted on the forum topic Link to profile in the group How-To and Troubleshooting: 13 years, 5 months ago
The
bp_core_get_user_domain()
function is what you’re looking for.Try passing the author ID to that function.
eg.
bp_core_get_user_domain( p2_get_author_id() )
-
r-a-y posted on the forum topic Problem with new Notifications for Forum Posts that are Replied from Activity Stream in the group Creating & Extending: 13 years, 5 months ago
I don’t believe BP sends notifications for forum posts by default.
Are you using a plugin? If so, which one? I think BuddyDev.com released a plugin for this. Not 100% sure.Also, what is written in the BuddyBar notification?
-
r-a-y posted on the forum topic "Send Private Message" auto fill problem in the group How-To and Troubleshooting: 13 years, 5 months ago
Sounds like you’re using a caching plugin like W3 Total Cache.
If you have it enabled, disable it.Right now, there are a few issues with using object caching plugins.
Stay tuned to the following ticket for updates:
https://buddypress.trac.wordpress.org/ticket/2636 -
r-a-y posted on the forum topic Buddypress & bbpress in the group How-To and Troubleshooting: 13 years, 5 months ago
BuddyPress will be properly integrated with the bbPress plugin in v1.4. Until then, you’ll have to make due with the existing setup.
-
r-a-y posted on the forum topic Theming User Profile / blog post page. in the group How-To and Troubleshooting: 13 years, 5 months ago
Blog posts use regular WP templates: single.php for blog posts; page.php for WP pages.
User profile comprises a number of templates, but the main structure of it can be found under /bp-default/members/single/home.php. Copy this file to your theme retaining the folder structure and modify it to your heart’s content.
-
r-a-y posted on the forum topic oEmbed vedio as Group / Post avatar? in the group oEmbed for BuddyPress: 13 years, 5 months ago
Interesting use case. This is something I wouldn’t add to the plugin. However, to give you a few pointers, you could use the wp_oembed_get() function on the raw group avatar URL. Unless you create the appropriate caching functions, I would not recommend this as oEmbed returns with wp_oembed_get() are not cached and would generate an […]
-
r-a-y posted on the forum topic Buddypress & bbpress in the group How-To and Troubleshooting: 13 years, 5 months ago
That codex page refers to the standalone bbPress script, and not the bbPress plugin . Yeah, I know it’s a little bit confusing! Right now, there is no integration between BuddyPress and the bbPress plugin, however you can still use BuddyPress group forums and the bbPress plugin separately. I would recommend changing your bbPress plugin slug to […]
-
r-a-y posted on the forum topic How to save deleted activity? in the group How-To and Troubleshooting: 13 years, 5 months ago
Check out the bp_activity_action_delete_activity() function in bp-activity.php. There’s a hook where you can grab the activity ID before it’s deleted:
/* Call the action before the delete so plugins can still fetch information about it */ do_action( 'bp_activity_action_delete_activity', $activity_id, $activity->user_id );
You could potentially…[Read more] -
r-a-y posted on the forum topic Sending attachments with Private messages in the group Creating & Extending: 13 years, 5 months ago
It’s possible, but the plugin would have to create its own tables to store the data. The Group Documents plugin that Dennis mentioned does something similar codewise and can be used as a jumping off point. It would be better if BP had a dedicated meta table for PMs like the activity component. Then you could […]
-
r-a-y posted on the forum topic Issue with links on username when people have signed up with WP facebook autoconnect in the group BuddyPress Usernames Only: 13 years, 5 months ago
@ewebber – Probably a conflict with filters. There are also some bugs in the current version of the plugin, which I’m aware of. However, I need to find some time to get to this.
-
r-a-y posted on the forum topic Hiding "[User] joined the group [GroupName]" from group feeds without editing core files? in the group Creating & Extending: 13 years, 5 months ago
There’s a plugin for this: https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/ It’s an older plugin and the developer is now busy with other projects, so you’ll need to update the plugin manually so the admin menu will show up in WP. Read this tutorial: http://code.ipstenu.org/2011/wordpress-3-1-network-menu/ (Edit) Just…[Read more]
-
r-a-y posted on the forum topic how to convert wp-login.php to just login.php in the url of the login page ? in the group Creating & Extending: 13 years, 5 months ago
For a free alternative, you can try Theme My Login:
https://wordpress.org/extend/plugins/theme-my-login/This will make your login page:
hxxp://example.com/login/And also, I believe buddydev.com offers a plugin for this as well, but it’s a premium plugin.
-
r-a-y posted on the forum topic BuddyPress Template Pack 1.1 upgrade in the group Installing BuddyPress: 13 years, 5 months ago
@boonebgorges – Looks like the button hooks are missing in BP Template Pack:
https://buddypress.trac.wordpress.org/browser/tags/1.2.8/bp-themes/bp-default/functions.php#L339This will fix the issue stevieg is experiencing.
-
r-a-y posted on the forum topic Gettinng id of the activity status in the group Creating & Extending: 13 years, 5 months ago
You can use bp_get_activity_id() instead of directly accessing the $bp global.
-
r-a-y posted on the forum topic Bug: An Error after Click the Activation Link in Email in the group How-To and Troubleshooting: 13 years, 5 months ago
Don’t use @r-a-y codes @mikey3d – Is that a general recommendation? 😉 I did say it was test code. Looks like you have whitespace issues in your /registration/activate.php. Delete any trailing whitespace from the beginning of that file. eg.
 -spaces - <?php
– Delete that trailing space! Your htaccess rewrite rules look like it will interfere […] - Load More
@r-a-y
Active 4 months, 4 weeks ago