-
Author
-
June 3, 2016 at 12:29 #124268
clyn
ParticipantI know, this is not your problem, but buddypress never reply or reply 1 month later… Please help me. Below code adding custom post types to members activity or site activity filter. Its working now but i never success to add second or third or more cpt to this code. I really need this help… Thanks.
<?php
add_post_type_support( ‘book’, ‘buddypress-activity’ );
function customize_page_tracking_args() {
   // Check if the Activity component is active before using it.
   if ( ! bp_is_active( ‘activity’ ) ) {
       return;
   }
   bp_activity_set_post_type_tracking_args( ‘book’, array(
       ‘component_id’            => ‘activity’,
       ‘action_id’               => ‘new_book’,
       ‘bp_activity_admin_filter’ => __( ‘My Book’, ‘custom-domain’ ),
       ‘bp_activity_front_filter’ => __( ‘Book’, ‘custom-domain’ ),
       ‘contexts’                => array( ‘activity’, ‘member’ ),
       ‘bp_activity_new_post’    => __( ‘%1$s published <a href=”%2$s”>Book Suggest</a>’, ‘custom-textdomain’ ),
       ‘bp_activity_new_post_ms’ => __( ‘%1$s published <a href=”%2$s”>Book</a>, on the site %3$s’, ‘custom-textdomain’ ),
‘comment_action_id’Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â => ‘new_book_comment’,
       ‘bp_activity_comments_admin_filter’ => __( ‘Commented Book’, ‘custom-textdomain’ ),
       ‘bp_activity_comments_front_filter’ => __( ‘Book Comments’, ‘custom-textdomain’ ),
       ‘bp_activity_new_comment’          => __( ‘%1$s commented on the <a href=”%2$s”>Book</a>’, ‘custom-textdomain’ ),
       ‘bp_activity_new_comment_ms’       => __( ‘%1$s commented on the <a href=”%2$s”>Book</a>, on the site %3$s’, ‘custom-textdomain’ ),
       ‘position’                         => 100,
      ) );
}
add_action( ‘init’, ‘customize_page_tracking_args’, 1000 );
 ?>
-
AuthorPosts
The forum ‘Feature requests’ is closed to new topics and replies.