Title: rtMedia Updates
Last modified: August 22, 2016

---

# rtMedia Updates

 *  [raytronx](https://wordpress.org/support/users/raytronx/)
 * (@raytronx)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/rtmedia-updates/)
 * Love the new plugin, awesome job.
    I noticed there is no edit button when the
   Activity update is an rtMedia update where photos are present. Any chance of 
   making this work as well?
 * Thanks Ray
 * [https://wordpress.org/plugins/buddypress-edit-activity/](https://wordpress.org/plugins/buddypress-edit-activity/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [mycru.io](https://wordpress.org/support/users/kawaiikawaii/)
 * (@kawaiikawaii)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/rtmedia-updates/#post-5683098)
 * I think I have a similar problem. I am using rtMedia and can’t see the edit button!
   or is this another problem somehow. my site is [http://www.kawaii.com](http://www.kawaii.com)
   my activity feed: [http://www.kawaii.com/member-activity/](http://www.kawaii.com/member-activity/)
 * Would really love to use this plugin. Appreciate any help.
 *  Plugin Contributor [BuddyBoss](https://wordpress.org/support/users/buddyboss/)
 * (@buddyboss)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/rtmedia-updates/#post-5683115)
 * Glad you guys like it.
 * rtMedia may be doing something unconventional with their activity posts. I’ll
   see if there is a workaround.
 *  Plugin Contributor [BuddyBoss](https://wordpress.org/support/users/buddyboss/)
 * (@buddyboss)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/rtmedia-updates/#post-5683178)
 * Latest release, updated today, allows for compatibility with rtMedia. It would
   bloat things to add code for every extra plugin. Add this into your theme’s functions.
   php file with latest release and it should work:
 *     ```
       //rtmedia_update
       add_filter( 'b_e_a_plugin_option_editable_types', 'add_rtmedia_activity_to_editable_types' );
       function add_rtmedia_activity_to_editable_types( $editable_types_array ){
       $myactivity_type = 'rtmedia_update';
       if( !in_array( $myactivity_type, $editable_types_array ) ){
       $editable_types_array[] = $myactivity_type;
       }
       return $editable_types_array;
       }
       ```
   
 * Keep in mind, making rtmedia updates editable might add some complication for
   users, since the activity content is mostly html…
 *  Thread Starter [raytronx](https://wordpress.org/support/users/raytronx/)
 * (@raytronx)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/rtmedia-updates/#post-5683179)
 * Thanks, that does work, but I see what you mean by html content.
    My general 
   users aren’t very tech savvy in that way.
 * Could something be added to this code snippet to make it only editable by certain
   WordPress roles. Like Admins and Editors for instance?
 * Cheers Ray
 *  Plugin Contributor [BuddyBoss](https://wordpress.org/support/users/buddyboss/)
 * (@buddyboss)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/rtmedia-updates/#post-5683191)
 * Could try this…
 *     ```
       if ( current_user_can( 'manage_options' ) ) {
   
       add_filter( 'b_e_a_plugin_option_editable_types', 'add_rtmedia_activity_to_editable_types' );
       function add_rtmedia_activity_to_editable_types( $editable_types_array ){
       $myactivity_type = 'rtmedia_update';
       if( !in_array( $myactivity_type, $editable_types_array ) ){
       $editable_types_array[] = $myactivity_type;
       }
       return $editable_types_array;
       }
   
       }
       ```
   

Viewing 5 replies - 1 through 5 (of 5 total)

 The topic ‘rtMedia Updates’ is closed to new replies.

 * ![](https://ps.w.org/buddypress-edit-activity/assets/icon-256x256.png?rev=1067596)
 * [BuddyPress Edit Activity](https://wordpress.org/plugins/buddypress-edit-activity/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/buddypress-edit-activity/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/buddypress-edit-activity/)
 * [Active Topics](https://wordpress.org/support/plugin/buddypress-edit-activity/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/buddypress-edit-activity/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/buddypress-edit-activity/reviews/)

## Tags

 * [rtmedia](https://wordpress.org/support/topic-tag/rtmedia/)

 * 5 replies
 * 3 participants
 * Last reply from: [BuddyBoss](https://wordpress.org/support/users/buddyboss/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/rtmedia-updates/#post-5683191)
 * Status: not resolved