Replies
Thank you Brajesh and your thoughts do help. The (non-Buddypress) site my client is currently using requires that users post all their content (blog posts, events) within their chosen group and I’ve been attempting to replicate that but I’m staring to realise that (for the reasons you mention, amongst others) it may be necessary to “re-educate” users to post via their personal profiles and/or then provide a way of associating posts with a group where possible…
Thank you for helping me think things through 😉
Thank you again Brajesh although that’s a shame…
Given that content creation is such a fundamental part of WordPress, I’m actually quite surprised how hard it’s proving to find a plugin that handles this for Buddypress groups. Maybe I’ll have to have a go at writing something myself… and/or maybe I’ll find there are challenges involved that will explain why others haven’t 😉
Regards
NikHi Brajesh
Thank you so much for your helpful reply.
I follow your suggestion with regard to disabling certain aspects, not quite so sure I can visualise how “a filter for filtering these in admin” would be created or how it would work but will definitely give it some more thought.
Warm regards
NikHi Brajesh
Thank you SO much!
I feel as if I must be almost there, and have been looking through your code to work out how things are done for other media types, but it would probably be a LOT quicker if you could possibly help me to “join the dots” 😉
With a million thanks in advance and will look forward to hearing from you.
NikHi Ravi
Many thanks again although I’m sorry, I think I’m even more confused now. Do I need to use all of that code (which makes reference to additional plugin files, scripts etc)?
All(?) I want to do is to be able to display presentations (gallery and single media) in a similar way as currently happens for documents.
Regards
NikPS. I tried adding –
function mpp_custom_register_default_gallery_view() { $view = MPP_Gallery_View_Default::get_instance(); mpp_register_gallery_view( 'presentation', $view ); } add_action( 'mpp_setup', 'mpp_custom_register_default_gallery_view', 11 );
… which seemed to be a step in the right direction but then adding –
function mpp_custom_register_presentation_default_view() { mpp_register_media_view( 'presentation', 'default', new MPP_Media_View_Presentation() ); } add_action( 'mpp_setup', 'mpp_custom_register_presentation_default_view', 11 );
… caused an error so I’m clearly not quite there yet.