Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,003
- How-to & Troubleshooting
- 129,526
- Creating & Extending
- 25,789
- Requests & Feedback
- 9,495
- Third Party Plugins
- 9,781
- Showcase
- 3,316
- Ideas
- 1,397
- Miscellaneous
- 9,169
-
Add a filter to bp_album_upload_path.
function my_bp_album_upload_path() {
$path = ABSPATH . 'wp-content/uploads/album';
return $path;
}
add_filter('bp_album_upload_path','my_bp_album_upload_path');
This code snippet is untested, but should give you some ideas.
You’re basically redefining the upload path that BP Album+ has set.
Lucky for you that the plugin offers a filter to change the upload path!
See also: WordPress.org • bbPress.org • BuddyPress.org • Matt • Blog RSS