Created
July 29, 2015 05:49
-
-
Save prabin04/1f774ebd59a82eea3bd3 to your computer and use it in GitHub Desktop.
BuddyPress Group Faavorite Count
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* BuddyPress - Activity Stream (Single Item) | |
* | |
* This template is used by activity-loop.php and AJAX functions to show | |
* each activity. | |
* | |
* @package BuddyPress | |
* @subpackage bp-legacy | |
*/ | |
?> | |
<?php do_action( 'bp_before_activity_entry' ); ?> | |
<li class="<?php bp_activity_css_class(); ?>" id="activity-<?php bp_activity_id(); ?>"> | |
<div class="activity-avatar"> | |
<a href="<?php bp_activity_user_link(); ?>"> | |
<?php bp_activity_avatar(); ?> | |
</a> | |
</div> | |
<div class="activity-content"> | |
<div class="activity-header"> | |
<?php bp_activity_action(); ?> | |
</div> | |
<?php if ( bp_activity_has_content() ) : ?> | |
<div class="activity-inner"> | |
<?php bp_activity_content_body(); ?> | |
</div> | |
<?php endif; ?> | |
<?php do_action( 'bp_activity_entry_content' ); ?> | |
<div class="activity-meta"> | |
<?php if ( bp_get_activity_type() == 'activity_comment' ) : ?> | |
<a href="<?php bp_activity_thread_permalink(); ?>" class="button view bp-secondary-action" title="<?php esc_attr_e( 'View Conversation', 'buddypress' ); ?>"><?php _e( 'View Conversation', 'buddypress' ); ?></a> | |
<?php endif; ?> | |
<?php if ( is_user_logged_in() ) : ?> | |
<?php if ( bp_activity_can_comment() ) : ?> | |
<a href="<?php bp_activity_comment_link(); ?>" class="button acomment-reply bp-primary-action" id="acomment-comment-<?php bp_activity_id(); ?>"><?php printf( __( 'Comment <span>%s</span>', 'buddypress' ), bp_activity_get_comment_count() ); ?></a> | |
<?php endif; ?> | |
<?php if ( bp_activity_can_favorite() ) : ?> | |
<?php $my_fav_count = bp_activity_get_meta( bp_get_activity_id(), 'favorite_count' ); ?> | |
<?php if ( !bp_get_activity_is_favorite() ) : ?> | |
<a href="<?php bp_activity_favorite_link(); ?>" class="button fav bp-secondary-action" title="<?php esc_attr_e( 'Mark as Favorite', 'buddypress' ); ?>"><span>Favorite <?php if( !empty( $my_fav_count ) ): ?><span><?php echo $my_fav_count; ?></span><?php endif; ?></a> | |
<?php else : ?> | |
<a href="<?php bp_activity_unfavorite_link(); ?>" class="button unfav bp-secondary-action" title="<?php esc_attr_e( 'Remove Favorite', 'buddypress' ); ?>"><span>Remove Favorite <span><?php echo $my_fav_count; ?></span></a> | |
<?php endif; ?> | |
<?php endif; ?> | |
<?php if ( bp_activity_user_can_delete() ) bp_activity_delete_link(); ?> | |
<?php do_action( 'bp_activity_entry_meta' ); ?> | |
<?php endif; ?> | |
</div> | |
</div> | |
<?php do_action( 'bp_before_activity_entry_comments' ); ?> | |
<?php if ( ( bp_activity_get_comment_count() || bp_activity_can_comment() ) || bp_is_single_activity() ) : ?> | |
<div class="activity-comments"> | |
<?php bp_activity_comments(); ?> | |
<?php if ( is_user_logged_in() && bp_activity_can_comment() ) : ?> | |
<form action="<?php bp_activity_comment_form_action(); ?>" method="post" id="ac-form-<?php bp_activity_id(); ?>" class="ac-form"<?php bp_activity_comment_form_nojs_display(); ?>> | |
<div class="ac-reply-avatar"><?php bp_loggedin_user_avatar( 'width=' . BP_AVATAR_THUMB_WIDTH . '&height=' . BP_AVATAR_THUMB_HEIGHT ); ?></div> | |
<div class="ac-reply-content"> | |
<div class="ac-textarea"> | |
<textarea id="ac-input-<?php bp_activity_id(); ?>" class="ac-input bp-suggestions" name="ac_input_<?php bp_activity_id(); ?>"></textarea> | |
</div> | |
<input type="submit" name="ac_form_submit" value="<?php esc_attr_e( 'Post', 'buddypress' ); ?>" /> <a href="#" class="ac-reply-cancel"><?php _e( 'Cancel', 'buddypress' ); ?></a> | |
<input type="hidden" name="comment_form_id" value="<?php bp_activity_id(); ?>" /> | |
</div> | |
<?php do_action( 'bp_activity_entry_comments' ); ?> | |
<?php wp_nonce_field( 'new_activity_comment', '_wpnonce_new_activity_comment' ); ?> | |
</form> | |
<?php endif; ?> | |
</div> | |
<?php endif; ?> | |
<?php do_action( 'bp_after_activity_entry_comments' ); ?> | |
</li> | |
<?php do_action( 'bp_after_activity_entry' ); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#buddypress a.bp-secondary-action span span { | |
background: #999; | |
color: #fff; | |
font-size: 90%; | |
margin-left: 2px; | |
padding: 0 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment