I am quite stuck on how to do this… Could there be a way to allow users to send messages to each other without a subject line? Or better yet, remove the subject line functionality all together? I’m attempting to implement a system more like twitter and instagram’s direct messages feature. I believe this would be done through hacking the core but I’m not sure how to go about it.
Thank you in advance for any help once again, a great support system here. 🙂
Hi Alayna,
Thank you for asking. BuddyPress needs the subject for the thread.
It can be accomplished by doing the following steps:-1. Hide subject box on the send message page and auto generate subject before saving
2. Hide the subject on the single thread page using css(or modifying the message loop).Please do let me know if you need specific code.
Thank you
BrajeshHi Alayna,
You may use the following js(in document ready block) to add the subject on your ownjQuery('#send_message_form').submit( function() { jQuery('#subject').val("Some message subject"); });
Please do note that the above simple is a simple hack and it will not affect notifications etc. You will have to update emails for notification to avoid sending message title.
Hope that helps.
Regards
Brajesh
The topic ‘ [Resolved] Remove the subject line requirement in messages?’ is closed to new replies.