Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Forum Attachments for BuddyPress: only admins can attach docs


Boone Gorges
Keymaster

@boonebgorges

Can I get a bit of clarification on what “can’t” means in “users can’t upload”? Does it mean that the upload field isn’t showing up at all for non-admins? Or does it mean that they get an error when they do try uploading?

If it’s the former, try pasting the following lines into the very beginning of forum-attachments-for-buddypress-bp-functions.php, right after `<?php`:
`add_action(‘groups_forum_new_topic_after’,’bb_attachments_upload_form’);
add_action(‘groups_forum_new_reply_after’, ‘bb_attachments_upload_form’);
add_action(‘groups_forum_edit_post_after’, ‘bb_attachments_upload_form’);
add_action(‘bp_after_group_forum_post_new’, ‘bb_attachments_upload_form’);
add_action(‘bp_group_after_edit_forum_post’, ‘bb_attachments_upload_form’);`

Skip to toolbar