Skip to:
Content

BuddyPress.org

Ticket #1176: cleanup-bp-sn-parent.patch

File cleanup-bp-sn-parent.patch, 177.9 KB (added by junsuijin, 15 years ago)
  • bp-friends/bp-friends-templatetags.php

     
    385385}
    386386
    387387function bp_friends_filter_title() {
    388         global $bp;
    389        
    390         $current_filter = $bp->action_variables[0];
    391        
    392         switch ( $current_filter ) {
    393                 case 'recently-active': default:
    394                         _e( 'Recently Active', 'buddypress' );
    395                         break;
    396                 case 'newest':
    397                         _e( 'Newest', 'buddypress' );
    398                         break;
    399                 case 'alphabetically':
    400                         _e( 'Alphabetically', 'buddypress' );
    401                 break;
    402         }
     388        echo bp_get_friends_filter_title();
    403389}
    404390
     391        function bp_get_friends_filter_title() {
     392                global $bp;
     393               
     394                $current_filter = $bp->action_variables[0];
     395               
     396                switch ( $current_filter ) {
     397                        case 'recently-active': default:
     398                                return __( 'Recently Active', 'buddypress' );
     399
     400                        case 'newest':
     401                                return __( 'Newest', 'buddypress' );
     402
     403                        case 'alphabetically':
     404                                return __( 'Alphabetically', 'buddypress' );
     405                }
     406        }
     407
    405408function bp_friends_random_friends() {
    406409        global $bp;
    407410       
  • bp-themes/bp-sn-parent/404.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content">
    4        
     4
    55                <?php do_action( 'bp_before_404' ) ?>
    6        
     6
    77                <div class="page 404">
    8                
     8
    99                        <h2 class="pagetitle"><?php _e( 'Page Not Found', 'buddypress' ) ?></h2>
    1010
    1111                        <div id="message" class="info">
    12                        
     12
    1313                                <p><?php _e( 'The page you were looking for was not found.', 'buddypress' ) ?>
    14                
     14
    1515                        </div>
    1616
    1717                        <?php do_action( 'bp_404' ) ?>
     
    1919                </div>
    2020
    2121                <?php do_action( 'bp_after_404' ) ?>
    22        
     22
    2323        </div>
    24        
     24
    2525        <?php get_sidebar() ?>
    2626
    27 <?php get_footer(); ?>
    28  No newline at end of file
     27<?php get_footer() ?>
     28 No newline at end of file
  • bp-themes/bp-sn-parent/activity/just-me.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php bp_last_activity() ?>
     6
    57        </div>
    68
    79        <div id="content">
     10
    811                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    912
    1013                <?php do_action( 'bp_before_my_activity_content' ) ?>
    11        
     14
    1215                <div class="left-menu">
     16
    1317                        <!-- Profile Menu (Avatar, Add Friend, Send Message buttons etc) -->
    1418                        <?php locate_template( array( 'profile/profile-menu.php' ), true ) ?>
     19
    1520                </div>
    1621
    1722                <div class="main-column">
    18                
     23
    1924                        <?php bp_get_profile_header() ?>
    2025
    2126                        <div class="bp-widget">
    22                                 <h4><?php echo bp_word_or_name( __( "My Activity", 'buddypress' ), __( "%s's Activity", 'buddypress' ), true, false ) ?> <a href="<?php bp_activities_member_rss_link() ?>" title="<?php _e( 'RSS Feed', 'buddypress' ) ?>"><?php _e( 'RSS Feed', 'buddypress' ) ?></a></h4>
    2327
     28                                <h4><?php echo bp_word_or_name( __( "My Activity", 'buddypress' ), __( "%s's Activity", 'buddypress' ), true, false ) ?>
     29
     30                                        <a href="<?php bp_activities_member_rss_link() ?>" title="<?php esc_attr_e( 'RSS Feed', 'buddypress' ) ?>"><?php _e( 'RSS Feed', 'buddypress' ) ?></a></h4>
     31
    2432                                <ul id="activity-filter-links">
     33
    2534                                        <?php bp_activity_filter_links() ?>
     35
    2636                                </ul>
    2737
    2838                                <?php if ( bp_has_activities( 'type=personal&per_page=25&max=500' ) ) : ?>
    29                                        
     39
    3040                                        <div class="pagination">
    31                                                
     41
    3242                                                <div class="pag-count" id="activity-count">
     43
    3344                                                        <?php bp_activity_pagination_count() ?>
     45
    3446                                                </div>
    35                
     47
    3648                                                <div class="pagination-links" id="activity-pag">
     49
    3750                                                        &nbsp; <?php bp_activity_pagination_links() ?>
     51
    3852                                                </div>
    39                                                
     53
    4054                                        </div>
    41                                        
     55
    4256                                        <ul id="activity-list" class="item-list activity-list">
    43                                         <?php while ( bp_activities() ) : bp_the_activity(); ?>
    44                                                 <li class="<?php bp_activity_css_class() ?>">
    45                                                         <div class="activity-avatar">
    46                                                                 <?php bp_activity_avatar() ?>
    47                                                         </div>
    48                                                        
    49                                                         <?php bp_activity_content() ?>
    50                                                        
    51                                                         <?php do_action( 'bp_my_activity_item' ) ?>
    52                                                 </li>
    53                                         <?php endwhile; ?>
     57
     58                                                <?php while ( bp_activities() ) : bp_the_activity() ?>
     59
     60                                                        <li class="<?php bp_activity_css_class() ?>">
     61
     62                                                                <div class="activity-avatar">
     63
     64                                                                        <?php bp_activity_avatar() ?>
     65
     66                                                                </div>
     67
     68                                                                <?php bp_activity_content() ?>
     69
     70                                                                <?php do_action( 'bp_my_activity_item' ) ?>
     71
     72                                                        </li>
     73
     74                                                <?php endwhile ?>
     75
    5476                                        </ul>
    55                                        
     77
    5678                                        <?php do_action( 'bp_my_activity_content' ) ?>
    5779
    58                                 <?php else: ?>
     80                                <?php else : ?>
    5981
    6082                                        <div id="message" class="info">
     83
    6184                                                <p><?php echo bp_word_or_name( __( "You haven't done anything yet.", 'buddypress' ), __( "%s hasn't done anything yet.", 'buddypress' ), true, false ) ?></p>
     85
    6286                                        </div>
    6387
    64                                 <?php endif;?>
     88                                <?php endif ?>
     89
    6590                        </div>
    66                
     91
    6792                </div>
    6893
    6994                <?php do_action( 'bp_after_my_activity_content' ) ?>
  • bp-themes/bp-sn-parent/activity/my-friends.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php bp_last_activity() ?>
     6
    57        </div>
    68
    79        <div id="content">
     10
    811                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    912
    1013                <?php do_action( 'bp_before_friends_activity_content' ) ?>
    11        
     14
    1215                <div class="left-menu">
     16
    1317                        <!-- Profile Menu (Avatar, Add Friend, Send Message buttons etc) -->
    1418                        <?php locate_template( array( 'profile/profile-menu.php' ), true ) ?>
     19
    1520                </div>
    1621
    1722                <div class="main-column">
     
    1924                        <?php bp_get_profile_header() ?>
    2025
    2126                        <div class="bp-widget">
    22                                 <h4><?php _e( 'My Friends Activity', 'buddypress' ) ?> <a href="<?php bp_activities_member_rss_link() ?>" title="<?php _e( 'RSS Feed', 'buddypress' ) ?>"><?php _e( 'RSS Feed', 'buddypress' ) ?></a></h4>
    2327
     28                                <h4><?php _e( 'My Friends Activity', 'buddypress' ) ?>
     29
     30                                        <a href="<?php bp_activities_member_rss_link() ?>" title="<?php esc_attr_e( 'RSS Feed', 'buddypress' ) ?>"><?php _e( 'RSS Feed', 'buddypress' ) ?></a></h4>
     31
    2432                                <ul id="activity-filter-links">
     33
    2534                                        <?php bp_activity_filter_links() ?>
     35
    2636                                </ul>
    2737
    2838                                <?php if ( bp_has_activities( 'type=friends&per_page=25&max=500' ) ) : ?>
    2939
    3040                                        <div class="pagination">
    31                                                
     41
    3242                                                <div class="pag-count" id="activity-count">
     43
    3344                                                        <?php bp_activity_pagination_count() ?>
     45
    3446                                                </div>
    35                
     47
    3648                                                <div class="pagination-links" id="activity-pag">
     49
    3750                                                        &nbsp; <?php bp_activity_pagination_links() ?>
     51
    3852                                                </div>
    39                                                
     53
    4054                                        </div>
    41                                        
     55
    4256                                        <ul id="activity-list" class="item-list activity-list">
    43                                         <?php while ( bp_activities() ) : bp_the_activity(); ?>
    44                                                 <li class="<?php bp_activity_css_class() ?>">
    45                                                         <div class="activity-avatar">
    46                                                                 <?php bp_activity_avatar() ?>
    47                                                         </div>
    48                                                        
    49                                                         <?php bp_activity_content() ?>
    5057
    51                                                         <?php do_action( 'bp_friends_activity_item' ) ?>
    52                                                 </li>
    53                                         <?php endwhile; ?>
     58                                                <?php while ( bp_activities() ) : bp_the_activity() ?>
     59
     60                                                        <li class="<?php bp_activity_css_class() ?>">
     61
     62                                                                <div class="activity-avatar">
     63
     64                                                                        <?php bp_activity_avatar() ?>
     65
     66                                                                </div>
     67
     68                                                                <?php bp_activity_content() ?>
     69
     70                                                                <?php do_action( 'bp_friends_activity_item' ) ?>
     71
     72                                                        </li>
     73
     74                                                <?php endwhile ?>
     75
    5476                                        </ul>
    55                                        
     77
    5678                                        <?php do_action( 'bp_friends_activity_content' ) ?>
    5779
    58                                 <?php else: ?>
     80                                <?php else : ?>
    5981
    6082                                        <div id="message" class="info">
     83
    6184                                                <p><?php _e( "Your friends haven't done anything yet.", 'buddypress' )  ?></p>
     85
    6286                                        </div>
    6387
    64                                 <?php endif;?>
     88                                <?php endif ?>
     89
    6590                        </div>
    66                
     91
    6792                </div>
    6893
    6994                <?php do_action( 'bp_after_friends_activity_content' ) ?>
    7095
    7196        </div>
    7297
    73 <?php get_footer() ?>
    74 
     98<?php get_footer() ?>
     99 No newline at end of file
  • bp-themes/bp-sn-parent/archive.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content">
    44
    55                <?php do_action( 'bp_before_archive' ) ?>
    6                
     6
    77                <div class="page" id="blog-archives">
    8                
     8
    99                        <h2 class="pagetitle"><?php _e( 'Blog', 'buddypress' ) ?></h2>
    10                        
     10
    1111                        <?php if ( have_posts() ) : ?>
    1212
    13                                 <h3><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3>
     13                                <h3><?php printf( __( 'You are browsing the archive for %s.', 'buddypress' ), wp_title( false, false ) ) ?></h3>
    1414
    1515                                <div class="navigation">
    16                                        
     16
    1717                                        <div class="alignleft"><?php next_posts_link( __( '&laquo; Previous Entries', 'buddypress' ) ) ?></div>
    1818                                        <div class="alignright"><?php previous_posts_link( __( 'Next Entries &raquo;', 'buddypress' ) ) ?></div>
    19                                
     19
    2020                                </div>
    2121
    22                                 <?php while (have_posts()) : the_post(); ?>
     22                                <?php while ( have_posts() ) : the_post() ?>
    2323
    2424                                        <?php do_action( 'bp_before_blog_post' ) ?>
    25                                
    26                                         <div class="post">
    27                                                
    28                                                 <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title(); ?>"><?php the_title(); ?></a></h3>
     25
     26                                        <div <?php post_class( $i++ & 1 ? '' : 'alt' ) ?> id="post-<?php the_ID() ?>">
     27
     28                                                <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf( esc_attr__( 'Permanent Link to %s', 'buddypress' ), get_the_title() ) ?>"><?php the_title() ?></a></h3>
     29
    2930                                                <small><?php the_time('F j, Y') ?></small>
    3031
    3132                                                <div class="entry">
     33
    3234                                                        <?php the_content() ?>
     35
    3336                                                </div>
    3437
    35                                                 <p class="postmetadata"><?php _e( 'Posted in', 'buddypress' ) ?> <?php the_category(', ') ?> | <?php edit_post_link( __( 'Edit', 'buddypress' ), '', ' | '); ?>  <?php comments_popup_link( __( 'No Comments &#187;', 'buddypress' ), __( '1 Comment &#187;', 'buddypress' ), __( '% Comments &#187;', 'buddypress' ) ); ?></p>
     38                                                <p class="postmetadata"><?php printf( __( 'Posted in %s', 'buddypress' ), get_the_category_list(',') ) ?>
    3639
     40                                                        <?php _e( '|', 'buddypress' ) ?>
     41
     42                                                        <?php edit_post_link( __( 'Edit', 'buddypress' ), '', "\n\n" . __( '|', 'buddypress' ) ) ?>
     43
     44                                                        <?php comments_popup_link(
     45                                                                __( 'No Comments &#187;', 'buddypress' ),
     46                                                                __( '1 Comment &#187;', 'buddypress' ),
     47                                                                __( '% Comments &#187;', 'buddypress' ) ) ?></p>
     48
    3749                                        </div>
    3850
    3951                                        <?php do_action( 'bp_after_blog_post' ) ?>
    4052
    41                                 <?php endwhile; ?>
     53                                <?php endwhile ?>
    4254
    4355                                <div class="navigation">
    44                                        
     56
    4557                                        <div class="alignleft"><?php next_posts_link( __( '&laquo; Previous Entries', 'buddypress' ) ) ?></div>
    4658                                        <div class="alignright"><?php previous_posts_link( __( 'Next Entries &raquo;', 'buddypress' ) ) ?></div>
    47                                
     59
    4860                                </div>
    4961
    5062                        <?php else : ?>
    5163
    5264                                <h2 class="center"><?php _e( 'Not Found', 'buddypress' ) ?></h2>
     65
    5366                                <?php locate_template( array( 'searchform.php' ), true ) ?>
    54                        
    55                         <?php endif; ?>
    5667
     68                        <?php endif ?>
     69
    5770                </div>
    5871
    5972                <?php do_action( 'bp_after_archive' ) ?>
    60                
     73
    6174        </div>
    6275
    63                 <?php get_sidebar(); ?>
     76        <?php get_sidebar() ?>
    6477
    65 <?php get_footer(); ?>
     78<?php get_footer() ?>
     79 No newline at end of file
  • bp-themes/bp-sn-parent/attachment.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content">
    44
    55                <?php do_action( 'bp_before_attachment' ) ?>
    6                
     6
    77                <div class="page" id="attachments-page">
    8                
     8
    99                        <h2 class="pagetitle"><?php _e( 'Blog', 'buddypress' ) ?></h2>
    10                
    11                                 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    1210
     11                        <?php if ( have_posts() ) : while ( have_posts() ) : the_post() ?>
     12
    1313                                        <?php do_action( 'bp_before_blog_post' ) ?>
    1414
    15                                         <?php $attachment_link = get_the_attachment_link($post->ID, true, array(450, 800)); // This also populates the iconsize for the next line ?>
    16                                         <?php $_post = &get_post($post->ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?>
    17                                
    18                                         <div class="post" id="post-<?php the_ID(); ?>">
    19                                
    20                                                 <h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &raquo; <a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2>
    21                                
     15                                        <div <?php post_class( $i++ & 1 ? '' : 'alt' ) ?> id="post-<?php the_ID() ?>">
     16
     17                                                <h2><a href="<?php echo get_permalink( $post->post_parent ) ?>" rev="attachment"><?php echo get_the_title( $post->post_parent ) ?></a>
     18
     19                                                <?php _e( '&raquo;', 'buddypress' ) ?>
     20
     21                                                <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php esc_attr_e( __( 'Permanent Link: %s', 'buddypress' ), get_the_title() ) ?>"><?php the_title() ?></a></h2>
     22
    2223                                                <div class="entry">
    23                                                         <p class="<?php echo $classname; ?>"><?php echo $attachment_link; ?><br /><?php echo basename($post->guid); ?></p>
    2424
    25                                                         <?php the_content( __('<p class="serif">Read the rest of this entry &raquo;</p>', 'buddypress' ) ); ?>
     25                                                        <p class="<?php
     26                                                                // This also populates the iconsize for the next line
     27                                                                $attachment_link = get_the_attachment_link( $post->ID, true, array( 450, 800 ) );
     28                                                                $_post = &get_post( $post->ID );
     29                                                                // This lets us style narrow icons specially
     30                                                                echo ( $_post->iconsize[0] <= 128 ? 'small ' : '' )
     31                                                        ?>attachment"><?php echo $attachment_link ?>
    2632
    27                                                         <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>
     33                                                        <br />
     34
     35                                                        <?php echo basename( $post->guid ) ?></p>
     36
     37                                                        <?php the_content( '<p class="serif">' . __('Read the rest of this entry &raquo;', 'buddypress' ) . '</p>' ) ?>
     38
     39                                                        <?php wp_link_pages( array( 'before' => '<p><strong>' . __( 'Pages:', 'buddypress' ) . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number') ) ?>
     40
    2841                                                </div>
    29                                        
     42
    3043                                        </div>
    3144
    3245                                        <?php do_action( 'bp_after_blog_post' ) ?>
    3346
    34                                 <?php comments_template(); ?>
     47                                        <?php comments_template() ?>
    3548
    36                                 <?php endwhile; else: ?>
     49                                <?php endwhile ?>
    3750
    38                                         <p><?php _e( 'Sorry, no attachments matched your criteria.', 'buddypress' ) ?></p>
     51                        <?php else : ?>
    3952
    40                                 <?php endif; ?>
     53                                <p><?php _e( 'Sorry, no attachments matched your criteria.', 'buddypress' ) ?></p>
     54
     55                        <?php endif ?>
     56
    4157                </div>
    4258
    4359                <?php do_action( 'bp_after_attachment' ) ?>
    4460
    4561        </div>
    4662
    47 <?php get_footer(); ?>
     63<?php get_footer() ?>
     64 No newline at end of file
  • bp-themes/bp-sn-parent/blogs/create.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php _e( 'Create a Blog', 'buddypress' ) ?>
     6
    57        </div>
    68
    79        <div id="content">
    810
    911                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    10                
     12
    1113                <h2><?php _e( 'Create a Blog', 'buddypress' ) ?></h2>
    1214
    1315                <?php do_action( 'bp_before_create_blog_content' ) ?>
    1416
    1517                <?php if ( bp_blog_signup_enabled() ) : ?>
    16                
     18
    1719                        <?php bp_show_blog_signup_form() ?>
    18        
    19                 <?php else: ?>
    2020
     21                <?php else : ?>
     22
    2123                        <div id="message" class="info">
    22                                 <p><?php _e( 'Blog registration is currently disabled', 'buddypress' ); ?></p>
     24
     25                                <p><?php _e( 'Blog registration is currently disabled', 'buddypress' ) ?></p>
     26
    2327                        </div>
    2428
    25                 <?php endif; ?>
     29                <?php endif ?>
    2630
    2731                <?php do_action( 'bp_after_create_blog_content' ) ?>
    2832
    2933        </div>
    3034
    31 <?php get_footer() ?>
    32 
     35<?php get_footer() ?>
     36 No newline at end of file
  • bp-themes/bp-sn-parent/blogs/my-blogs.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php bp_blogs_blog_tabs() ?>
     6
    57        </div>
    68
    79        <div id="content">
    810
    911                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    10                
     12
    1113                <h2><?php bp_word_or_name( __( "My Blogs", 'buddypress' ), __( "%s's Blogs", 'buddypress' ) ) ?></h2>
    1214
    1315                <?php do_action( 'bp_before_my_blogs_content' ) ?>
    1416
    1517                <?php if ( bp_has_blogs() ) : ?>
    16                        
     18
    1719                        <ul id="blog-list" class="item-list">
    18                                 <?php while ( bp_blogs() ) : bp_the_blog(); ?>
    19                                        
    20                                         <li>
     20
     21                                <?php while ( bp_blogs() ) : bp_the_blog() ?>
     22
     23                                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?>>
     24
    2125                                                <h4><a href="<?php bp_blog_permalink() ?>"><?php bp_blog_title() ?></a></h4>
     26
    2227                                                <p><?php bp_blog_description() ?></p>
    2328
    2429                                                <?php do_action( 'bp_my_blogs_item' ) ?>
     30
    2531                                        </li>
    26                                        
    27                                 <?php endwhile; ?>
     32
     33                                <?php endwhile ?>
     34
    2835                        </ul>
    29                        
     36
    3037                        <?php do_action( 'bp_my_blogs_content' ) ?>
    31                        
    32                 <?php else: ?>
    3338
     39                <?php else : ?>
     40
    3441                        <div id="message" class="info">
    35                                 <p><?php bp_word_or_name( __( "You haven't created any blogs yet.", 'buddypress' ), __( "%s hasn't created any public blogs yet.", 'buddypress' ) ) ?> <?php bp_create_blog_link() ?> </p>
     42
     43                                <p><?php bp_word_or_name( __( "You haven't created any blogs yet.", 'buddypress' ), __( "%s hasn't created any public blogs yet.", 'buddypress' ) ) ?>
     44
     45                                        <?php bp_create_blog_link() ?></p>
     46
    3647                        </div>
    3748
    38                 <?php endif;?>
     49                <?php endif ?>
    3950
    4051                <?php do_action( 'bp_after_my_blogs_content' ) ?>
    4152
  • bp-themes/bp-sn-parent/blogs/recent-comments.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php bp_blogs_blog_tabs() ?>
     6
    57        </div>
    68
    79        <div id="content">
    810
    911                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    10                        
    11                 <h2><?php _e("Recent Comments", "buddypress"); ?></h2>
    1212
     13                <h2><?php _e( 'Recent Comments', 'buddypress' ) ?></h2>
     14
    1315                <?php do_action( 'bp_before_recent_comments_content' ) ?>
    1416
    1517                <?php if ( bp_has_comments() ) : ?>
    1618
    1719                        <ul id="comment-list" class="item-list">
    18                                 <?php while ( bp_comments() ) : bp_the_comment(); ?>
    19                                        
    20                                         <li id="comment-<?php bp_comment_id() ?>">
    21                                                 <span class="small"><?php printf( __( 'On %1$s %2$s said:', 'buddypress' ), bp_comment_date( __( 'F jS, Y', 'buddypress' ), false ), bp_comment_author( false ) ); ?></span>
     20
     21                                <?php while ( bp_comments() ) : bp_the_comment() ?>
     22
     23                                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?> id="comment-<?php bp_comment_id() ?>">
     24
     25                                                <span class="small"><?php printf( __( 'On %1$s %2$s said:', 'buddypress' ), bp_comment_date( __( 'F jS, Y', 'buddypress' ), false ), bp_comment_author( false ) ) ?></span>
     26
    2227                                                <p><?php bp_comment_content() ?></p>
    23                                                 <span class="small"><?php printf( __( 'Commented on the post <a href="%1$s">%2$s</a> on the blog <a href="%3$s">%4$s</a>.', 'buddypress' ), bp_comment_post_permalink( false ), bp_comment_post_title( false ), bp_comment_blog_permalink( false ), bp_comment_blog_name( false ) ); ?></span>
    2428
     29                                                <span class="small"><?php printf( __( 'Commented on the post <a href="%1$s">%2$s</a> on the blog <a href="%3$s">%4$s</a>.', 'buddypress' ), bp_comment_post_permalink( false ), bp_comment_post_title( false ), bp_comment_blog_permalink( false ), bp_comment_blog_name( false ) ) ?></span>
     30
    2531                                                <?php do_action( 'bp_recent_comments_item' ) ?>
     32
    2633                                        </li>
    27                                        
    28                                 <?php endwhile; ?>
     34
     35                                <?php endwhile ?>
     36
    2937                        </ul>
    30                        
     38
    3139                        <?php do_action( 'bp_recent_comments_content' ) ?>
    3240
    33                 <?php else: ?>
     41                <?php else : ?>
    3442
    3543                        <div id="message" class="info">
     44
    3645                                <p><?php bp_word_or_name( __( "You haven't posted any comments yet.", 'buddypress' ), __( "%s hasn't posted any comments yet.", 'buddypress' ) ) ?></p>
     46
    3747                        </div>
    3848
    39                 <?php endif;?>
     49                <?php endif ?>
    4050
    4151                <?php do_action( 'bp_after_recent_comments_content' ) ?>
    4252
  • bp-themes/bp-sn-parent/blogs/recent-posts.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php bp_blogs_blog_tabs() ?>
     6
    57        </div>
    68
    79        <div id="content">
    810
    911                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    1012               
    11                 <h2><?php _e("Recent Posts", "buddypress"); ?></h2>
     13                <h2><?php _e( 'Recent Posts', 'buddypress' ) ?></h2>
    1214
    13                 <?php do_action( 'bp_before_recent_posts_content' ) ?>         
     15                <?php do_action( 'bp_before_recent_posts_content' ) ?>
    1416
    1517                <?php if ( bp_has_posts() ) : ?>
    16                        
    17                         <?php while ( bp_posts() ) : bp_the_post(); ?>
    18                        
    19                                 <div class="post" id="post-<?php bp_post_id(); ?>">
    20                                        
    21                                         <h2><a href="<?php bp_post_permalink() ?>" rel="bookmark" title="<?php printf ( __( 'Permanent Link to %s', 'buddypress' ), bp_post_title( false ) ); ?>"><?php bp_post_title(); ?></a></h2>
    22                                        
    23                                         <p class="date"><?php printf( __( '%1$s <em>in %2$s by %3$s</em>', 'buddypress' ), bp_post_date(__('F jS, Y', 'buddypress'), false ), bp_post_category( ', ', '', null, false ), bp_post_author( false ) ); ?></p>
    24                                         <?php bp_post_content(__('Read the rest of this entry &raquo;')); ?>
    25                                         <p class="postmetadata"><?php bp_post_tags( '<span class="tags">', ', ', '</span>' ); ?>  <span class="comments"><?php bp_post_comments( __('No Comments'), __('1 Comment'), __('% Comments') ); ?></span></p>
    26                                        
    27                                         <?php do_action( 'bp_recent_posts_item' ) ?>           
    2818
     19                        <?php while ( bp_posts() ) : bp_the_post() ?>
     20
     21                                <div <?php post_class( ( $i++ & 1 ? '' : 'alt' ), bp_get_post_id() ) ?> id="post-<?php bp_post_id() ?>">
     22
     23                                        <h2><a href="<?php bp_post_permalink() ?>" rel="bookmark" title="<?php printf ( esc_attr__( 'Permanent Link to %s', 'buddypress' ), bp_post_title( false ) ) ?>"><?php bp_post_title() ?></a></h2>
     24
     25                                        <p class="date"><?php printf( __( '%1$s <em>in %2$s by %3$s</em>', 'buddypress' ), bp_post_date( __('F jS, Y', 'buddypress' ), false ), bp_post_category( ', ', '', null, false ), bp_post_author( false ) ) ?></p>
     26
     27                                        <?php bp_post_content( __( 'Read the rest of this entry &raquo;', 'buddypress' ) ) ?>
     28                                        <p class="postmetadata"><?php bp_post_tags( '<span class="tags">', ', ', '</span>' ) ?>
     29
     30                                                <span class="comments"><?php bp_post_comments(
     31                                                        __( 'No Comments', 'buddypress' ),
     32                                                        __( '1 Comment', 'buddypress' ),
     33                                                        __( '% Comments', 'buddypress' )
     34                                                ) ?></span></p>
     35
     36                                        <?php do_action( 'bp_recent_posts_item' ) ?>   
     37
    2938                                        <hr />
    30                                        
     39
    3140                                </div>
    32                        
    33                         <?php endwhile; ?>
    3441
    35                         <?php do_action( 'bp_recent_posts_content' ) ?>         
    36                                
    37                 <?php else: ?>
     42                        <?php endwhile ?>
    3843
     44                        <?php do_action( 'bp_recent_posts_content' ) ?>
     45
     46                <?php else : ?>
     47
    3948                        <div id="message" class="info">
     49
    4050                                <p><?php bp_word_or_name( __( "You haven't made any posts yet.", 'buddypress' ), __( "%s hasn't made any posts yet.", 'buddypress' ) ) ?></p>
     51
    4152                        </div>
    4253
    43                 <?php endif;?>
     54                <?php endif ?>
    4455
    45                 <?php do_action( 'bp_after_recent_posts_content' ) ?>           
     56                <?php do_action( 'bp_after_recent_posts_content' ) ?>
    4657
    4758        </div>
    4859
  • bp-themes/bp-sn-parent/comments.php

     
    1         <?php
    2                 if ( post_password_required() ) :
    3                         echo '<h3 class="comments-header">' . __('Password Protected', 'buddypress') . '</h3>';
    4                         echo '<p class="alert password-protected">' . __('Enter the password to view comments.', 'buddypress') . '</p>';
    5                         return;
    6                 endif;
     1        <?php if ( post_password_required() ) : ?>
    72
    8                 if ( is_page() && !have_comments() && !comments_open() && !pings_open() )
    9                         return;
    10         ?>
     3                <h3 class="comments-header"><?php _e( 'Password Protected', 'buddypress' ) ?></h3>
    114
     5                <p class="alert password-protected"><?php _e( 'Enter the password to view comments.', 'buddypress' ) ?></p>
     6
     7                <?php return ?>
     8
     9        <?php endif ?>
     10
     11        <?php if ( is_page() && !have_comments() && !comments_open() && !pings_open() )
     12                return ?>
     13
    1214        <div id="comments-template">
    1315
    1416                <?php if ( have_comments() ) : ?>
    1517
    1618                        <div id="comments">
    1719
    18                                 <h3 id="comments-number" class="comments-header"><?php comments_number( sprintf( __('No responses to %1$s', 'buddypress'), the_title( '&#8220;', '&#8221;', false ) ), sprintf( __('One response to %1$s', 'buddypress'), the_title( '&#8220;', '&#8221;', false ) ), sprintf( __('%1$s responses to %2$s', 'buddypress'), '%', the_title( '&#8220;', '&#8221;', false ) ) ); ?></h3>
     20                                <h3 id="comments-number" class="comments-header"><?php comments_number(
     21                                        sprintf( __( 'No responses to &#8220;%s&#8221;', 'buddypress' ), get_the_title() ),
     22                                        sprintf( __( 'One response to &#8220;%s&#8221;', 'buddypress' ), get_the_title() ),
     23                                        sprintf( __( '%1$s responses to &#8220;%2$s&#8221;', 'buddypress' ), '%', get_the_title() )
     24                                ) ?></h3>
    1925
    2026                                <?php do_action( 'bp_before_blog_comment_list' ) ?>
    2127
    2228                                <ol class="commentlist">
    23                                         <?php wp_list_comments( array( 'style' => 'ol', 'type' => 'all' ) ); ?>
    24                                 </ol><!-- .comment-list -->
    2529
     30                                        <?php wp_list_comments( array( 'style' => 'ol', 'type' => 'all' ) ) ?>
     31
     32                                </ol><!-- .commentlist -->
     33
    2634                                <?php do_action( 'bp_after_blog_comment_list' ) ?>
    2735
    2836                                <?php if ( get_option( 'page_comments' ) ) : ?>
    29                        
     37
    3038                                        <div class="comment-navigation paged-navigation">
    31                                
    32                                                 <?php paginate_comments_links(); ?>
    3339
     40                                                <?php paginate_comments_links() ?>
     41
    3442                                        </div>
    35                                 <?php endif; ?>
    3643
     44                                <?php endif ?>
     45
    3746                        </div><!-- #comments -->
    3847
    3948                <?php else : ?>
    4049
    4150                        <?php if ( pings_open() && !comments_open() && is_single() ) : ?>
    4251
    43                                 <p class="comments-closed pings-open">
    44                                         <?php printf( __('Comments are closed, but <a href="%1$s" title="Trackback URL for this post">trackbacks</a> and pingbacks are open.', 'buddypress'), trackback_url( '0' ) ); ?>
    45                                 </p>
     52                                <p class="comments-closed pings-open"><?php printf( __( 'Comments are closed, but <a href="%s" title="Trackback URL for this post">trackbacks</a> and pingbacks are open.', 'buddypress' ), trackback_url( '0' ) ) ?></p>
    4653
    4754                        <?php elseif ( !comments_open() && is_single() ) : ?>
    4855
    49                                 <p class="comments-closed">
    50                                         <?php _e('Comments are closed.', 'buddypress'); ?>
    51                                 </p>
     56                                <p class="comments-closed"><?php _e( 'Comments are closed.', 'buddypress' ) ?></p>
    5257
    53                         <?php endif; ?>
     58                        <?php endif ?>
    5459
    55                 <?php endif; ?>
     60                <?php endif ?>
    5661
    5762                <?php if ( comments_open() ) : ?>
    5863
    5964                        <div id="respond">
    6065
    61                                 <h3 id="reply" class="comments-header">
    62                                         <?php comment_form_title( __('Leave a Reply', 'buddypress'), __('Leave a Reply to %s', 'buddypress'), true ); ?>
    63                                 </h3>
     66                                <h3 id="reply" class="comments-header"><?php comment_form_title( __( 'Leave a Reply', 'buddypress' ), __( 'Leave a Reply to %s', 'buddypress' ), true ) ?></h3>
    6467
    65                                 <p id="cancel-comment-reply">
    66                                         <?php cancel_comment_reply_link( __('Click here to cancel reply.', 'buddypress') ); ?>
    67                                 </p>
     68                                <p id="cancel-comment-reply"><?php cancel_comment_reply_link( __( 'Click here to cancel reply.', 'buddypress' ) ) ?></p>
    6869
    6970                                <?php if ( get_option( 'comment_registration' ) && !$user_ID ) : ?>
    7071
    71                                         <p class="alert">
    72                                                 <?php printf( __('You must be <a href="%1$s" title="Log in">logged in</a> to post a comment.', 'buddypress'), wp_login_url( get_permalink() ) ); ?>
    73                                         </p>
     72                                        <p class="alert"><?php printf( __( 'You must be <a href="%s" title="Log in">logged in</a> to post a comment.', 'buddypress'), wp_login_url( get_permalink() ) ) ?></p>
    7473
    7574                                <?php else : ?>
    7675
    7776                                        <?php do_action( 'bp_before_blog_comment_form' ) ?>
    78                        
    79                                         <form action="<?php echo get_option( 'siteurl' ); ?>/wp-comments-post.php" method="post" id="commentform" class="standard-form">
    8077
     78                                        <form action="<?php echo get_option( 'siteurl' ) ?>/wp-comments-post.php" method="post" id="commentform" class="standard-form">
     79
    8180                                                <?php if ( $user_ID ) : ?>
    8281
    83                                                         <p class="log-in-out">
    84                                                                 <?php printf( __('Logged in as <a href="%1$s" title="%2$s">%2$s</a>.', 'buddypress'), bp_loggedin_user_domain(), $user_identity ); ?> <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="<?php _e('Log out of this account', 'buddypress'); ?>"><?php _e('Log out &raquo;', 'buddypress'); ?></a>
    85                                                         </p>
     82                                                        <p class="log-in-out"><?php printf( __( 'Logged in as <a href="%1$s" title="%2$s">%2$s</a>.', 'buddypress' ), bp_loggedin_user_domain(), $user_identity ) ?>
    8683
     84                                                                <a href="<?php echo wp_logout_url( get_permalink() ) ?>" title="<?php esc_attr_e( 'Log out of this account', 'buddypress' ) ?>"><?php _e('Log out &raquo;', 'buddypress') ?></a></p>
     85
    8786                                                <?php else : ?>
    8887
    89                                                         <?php $req = get_option( 'require_name_email' ); ?>
     88                                                        <?php $req = get_option( 'require_name_email' ) ?>
    9089
    91                                                         <p class="form-author">
    92                                                                 <label for="author"><?php _e('Name', 'buddypress'); ?> <?php if ( $req ) : ?><span class="required"><?php _e('*', 'buddypress'); ?></span><?php endif; ?></label>
    93                                                                 <input type="text" class="text-input" name="author" id="author" value="<?php echo $comment_author; ?>" size="40" tabindex="1" />
    94                                                         </p>
     90                                                        <p class="form-author"><label for="author"><?php _e( 'Name', 'buddypress' );
    9591
    96                                                         <p class="form-email">
    97                                                                 <label for="email"><?php _e('Email', 'buddypress'); ?>  <?php if ( $req ) : ?><span class="required"><?php _e('*', 'buddypress'); ?></span><?php endif; ?></label>
    98                                                                 <input type="text" class="text-input" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="40" tabindex="2" />
    99                                                         </p>
     92                                                                if ( $req ) : ?>
    10093
    101                                                         <p class="form-url">
    102                                                                 <label for="url"><?php _e('Website', 'buddypress'); ?></label>
    103                                                                 <input type="text" class="text-input" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="40" tabindex="3" />
    104                                                         </p>
     94                                                                        <span class="required"><?php _e( '*', 'buddypress' ) ?></span><?php endif ?></label>
    10595
    106                                                 <?php endif; ?>
     96                                                                <input type="text" class="text-input" name="author" id="author" value="<?php echo $comment_author; ?>" size="40" tabindex="1" /></p>
    10797
    108                                                 <p class="form-textarea">
    109                                                         <label for="comment"><?php _e('Comment', 'buddypress'); ?></label>
    110                                                         <textarea name="comment" id="comment" cols="60" rows="10" tabindex="4"></textarea>
    111                                                 </p>
     98                                                        <p class="form-email"><label for="email"><?php _e( 'Email', 'buddypress' );
    11299
     100                                                                if ( $req ) : ?>
     101
     102                                                                        <span class="required"><?php _e( '*', 'buddypress' ) ?></span><?php endif ?></label>
     103
     104                                                                <input type="text" class="text-input" name="email" id="email" value="<?php echo $comment_author_email ?>" size="40" tabindex="2" /></p>
     105
     106                                                        <p class="form-url"><label for="url"><?php _e( 'Website', 'buddypress' ) ?></label>
     107
     108                                                                <input type="text" class="text-input" name="url" id="url" value="<?php echo $comment_author_url ?>" size="40" tabindex="3" /></p>
     109
     110                                                <?php endif ?>
     111
     112                                                <p class="form-textarea"><label for="comment"><?php _e( 'Comment', 'buddypress' ) ?></label>
     113
     114                                                        <textarea name="comment" id="comment" cols="60" rows="10" tabindex="4"></textarea></p>
     115
    113116                                                <?php do_action( 'bp_blog_comment_form' ) ?>
    114117
    115                                                 <p class="form-submit">
    116                                                         <input class="submit-comment button" name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit', 'buddypress'); ?>" />
    117                                                         <input class="reset-comment button" name="reset" type="reset" id="reset" tabindex="6" value="<?php _e('Reset', 'buddypress'); ?>" />
    118                                                         <?php comment_id_fields(); ?>
    119                                                 </p>
     118                                                <p class="form-submit"><input class="submit-comment button" name="submit" type="submit" id="submit" tabindex="5" value="<?php _e( 'Submit', 'buddypress' ) ?>" />
    120119
     120                                                        <input class="reset-comment button" name="reset" type="reset" id="reset" tabindex="6" value="<?php _e( 'Reset', 'buddypress' ) ?>" />
     121
     122                                                        <?php comment_id_fields() ?></p>
     123
    121124                                                <div class="comment-action">
    122                                                         <?php do_action( 'comment_form', $post->ID ); ?>
     125
     126                                                        <?php do_action( 'comment_form', $post->ID ) ?>
     127
    123128                                                </div>
    124129
    125130                                        </form>
    126131
    127132                                        <?php do_action( 'bp_after_blog_comment_form' ) ?>
    128133
    129                                 <?php endif; ?>
     134                                <?php endif ?>
    130135
    131136                        </div>
    132137
    133                 <?php endif; ?>
    134        
    135         </div>
    136        
    137  No newline at end of file
     138                <?php endif ?>
     139
     140        </div>
     141 No newline at end of file
  • bp-themes/bp-sn-parent/directories/blogs/blogs-loop.php

     
    1 <?php if ( bp_has_site_blogs( 'type=active&per_page=10' ) ) : ?>
    2        
    3         <div class="pagination">
    4                
    5                 <div class="pag-count" id="blog-dir-count">
    6                         <?php bp_site_blogs_pagination_count() ?>
    7                 </div>
     1        <?php if ( bp_has_site_blogs( 'type=active&per_page=10' ) ) : ?>
    82
    9                 <div class="pagination-links" id="blog-dir-pag">
    10                         <?php bp_site_blogs_pagination_links() ?>
    11                 </div>
    12                
    13         </div>
     3                <div class="pagination">
    144
    15         <?php do_action( 'bp_before_directory_blogs_list' ) ?>         
     5                        <div class="pag-count" id="blog-dir-count">
    166
    17         <ul id="blogs-list" class="item-list">
    18         <?php while ( bp_site_blogs() ) : bp_the_site_blog(); ?>
     7                                <?php bp_site_blogs_pagination_count() ?>
    198
    20                 <li>
    21                         <div class="item-avatar">
    22                                 <a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_avatar_thumb() ?></a>
    239                        </div>
    2410
    25                         <div class="item">
    26                                 <div class="item-title"><a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_name() ?></a></div>
    27                                 <div class="item-meta"><span class="activity"><?php bp_the_site_blog_last_active() ?></span></div>
     11                        <div class="pagination-links" id="blog-dir-pag">
    2812
    29                                 <?php do_action( 'bp_core_directory_blogs_item' ) ?>
     13                                <?php bp_site_blogs_pagination_links() ?>
     14
    3015                        </div>
    3116
    32                         <div class="action">
    33                                 <div class="generic-button blog-button visit">
    34                                         <a href="<?php bp_the_site_blog_link() ?>" class="visit" title="<?php _e( 'Visit Blog', 'buddypress' ) ?>"><?php _e( 'Visit Blog', 'buddypress' ) ?></a>
     17                </div>
     18
     19                <?php do_action( 'bp_before_directory_blogs_list' ) ?>
     20
     21                <ul id="blogs-list" class="item-list">
     22
     23                <?php while ( bp_site_blogs() ) : bp_the_site_blog() ?>
     24
     25                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?>>
     26
     27                                <div class="item-avatar">
     28
     29                                        <a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_avatar_thumb() ?></a>
     30
    3531                                </div>
    36                                
    37                                 <div class="meta">
    38                                         <?php bp_the_site_blog_latest_post() ?>
     32
     33                                <div class="item">
     34
     35                                        <div class="item-title"><a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_name() ?></a></div>
     36
     37                                        <div class="item-meta"><span class="activity"><?php bp_the_site_blog_last_active() ?></span></div>
     38
     39                                        <?php do_action( 'bp_core_directory_blogs_item' ) ?>
     40
    3941                                </div>
    40                                
    41                                 <?php do_action( 'bp_directory_blogs_actions' ) ?>
    42                         </div>
    4342
    44                         <div class="clear"></div>
    45                 </li>
     43                                <div class="action">
    4644
    47         <?php endwhile; ?>
    48         </ul>           
     45                                        <div class="generic-button blog-button visit">
    4946
    50         <?php do_action( 'bp_after_directory_blogs_list' ) ?>           
    51                        
    52 <?php else: ?>
     47                                                <a href="<?php bp_the_site_blog_link() ?>" class="visit" title="<?php esc_attr_e( 'Visit Blog', 'buddypress' ) ?>"><?php _e( 'Visit Blog', 'buddypress' ) ?></a>
    5348
    54         <div id="message" class="info">
    55                 <p><?php _e( 'No blogs found. Blogs must fill in at least one piece of profile data to show in blog lists.', 'buddypress' ) ?></p>
    56         </div>
     49                                        </div>
    5750
    58 <?php endif; ?>
     51                                        <div class="meta">
    5952
    60 <?php bp_the_site_blog_hidden_fields() ?>
    61  No newline at end of file
     53                                                <?php bp_the_site_blog_latest_post() ?>
     54
     55                                        </div>
     56
     57                                        <?php do_action( 'bp_directory_blogs_actions' ) ?>
     58
     59                                </div>
     60
     61                                <div class="clear"></div>
     62
     63                        </li>
     64
     65                <?php endwhile ?>
     66
     67                </ul>
     68
     69                <?php do_action( 'bp_after_directory_blogs_list' ) ?>
     70
     71        <?php else : ?>
     72
     73                <div id="message" class="info">
     74
     75                        <p><?php _e( 'No blogs found. Blogs must fill in at least one piece of profile data to show in blog lists.', 'buddypress' ) ?></p>
     76
     77                </div>
     78
     79        <?php endif ?>
     80
     81        <?php bp_the_site_blog_hidden_fields() ?>
     82 No newline at end of file
  • bp-themes/bp-sn-parent/directories/blogs/index.php

     
    11<?php get_header() ?>
    22
    3         <?php do_action( 'bp_before_directory_blogs_content' ) ?>               
     3        <?php do_action( 'bp_before_directory_blogs_content' ) ?>
    44
    55        <div id="content">
    6        
     6
    77                <div class="page" id="blogs-directory-page">
    8        
     8
    99                        <form action="<?php echo site_url() . '/' ?>" method="post" id="blogs-directory-form">
     10
    1011                                <h3><?php _e( 'Blog Directory', 'buddypress' ) ?></h3>
    11                
     12
    1213                                <ul id="letter-list">
     14
    1315                                        <li><a href="#a" id="letter-a">A</a></li>
    1416                                        <li><a href="#b" id="letter-b">B</a></li>
    1517                                        <li><a href="#c" id="letter-c">C</a></li>
     
    3638                                        <li><a href="#x" id="letter-x">X</a></li>
    3739                                        <li><a href="#y" id="letter-y">Y</a></li>
    3840                                        <li><a href="#z" id="letter-z">Z</a></li>
     41
    3942                                </ul>
    4043
    4144                                <div id="blogs-directory-listing" class="directory-listing">
     45
    4246                                        <h3><?php _e( 'Blog Listing', 'buddypress' ) ?></h3>
    4347                       
    4448                                        <div id="blog-dir-list">
     49
    4550                                                <?php locate_template( array( 'directories/blogs/blogs-loop.php' ), true ) ?>
     51
    4652                                        </div>
    4753
    4854                                </div>
     
    5258                                <?php wp_nonce_field( 'directory_blogs', '_wpnonce-blog-filter' ) ?>
    5359
    5460                        </form>
    55        
     61
    5662                </div>
    57        
     63
    5864        </div>
    5965
    60         <?php do_action( 'bp_after_directory_blogs_content' ) ?>               
    61         <?php do_action( 'bp_before_directory_blogs_sidebar' ) ?>               
     66        <?php do_action( 'bp_after_directory_blogs_content' ) ?>
     67        <?php do_action( 'bp_before_directory_blogs_sidebar' ) ?>
    6268
    6369        <div id="sidebar" class="directory-sidebar">
    6470
    65                 <?php do_action( 'bp_before_directory_blogs_search' ) ?>       
     71                <?php do_action( 'bp_before_directory_blogs_search' ) ?>
    6672
    6773                <div id="blogs-directory-search" class="directory-widget">
    68                        
     74
    6975                        <h3><?php _e( 'Find Blogs', 'buddypress' ) ?></h3>
    7076
    7177                        <?php bp_directory_blogs_search_form() ?>
    7278
    73                         <?php do_action( 'bp_directory_blogs_search' ) ?>       
     79                        <?php do_action( 'bp_directory_blogs_search' ) ?>
    7480
    7581                </div>
    7682
    77                 <?php do_action( 'bp_after_directory_blogs_search' ) ?> 
    78                 <?php do_action( 'bp_before_directory_blogs_featured' ) ?>     
     83                <?php do_action( 'bp_after_directory_blogs_search' ) ?>
     84                <?php do_action( 'bp_before_directory_blogs_featured' ) ?>
    7985
    8086                <div id="blogs-directory-featured" class="directory-widget">
    81                        
     87
    8288                        <h3><?php _e( 'Random Blogs', 'buddypress' ) ?></h3>
    83                
     89
    8490                        <?php if ( bp_has_site_blogs( 'type=random&max=3' ) ) : ?>
    8591
    8692                                <ul id="featured-blogs-list" class="item-list">
    87                                         <?php while ( bp_site_blogs() ) : bp_the_site_blog(); ?>
    8893
    89                                                 <li>
     94                                        <?php while ( bp_site_blogs() ) : bp_the_site_blog() ?>
     95
     96                                                <li<?php echo ( $j++ & 1 ? '' : ' class="alt"' ) ?>>
     97
    9098                                                        <div class="item-avatar">
     99
    91100                                                                <a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_avatar_thumb() ?></a>
     101
    92102                                                        </div>
    93103
    94104                                                        <div class="item">
     105
    95106                                                                <div class="item-title"><a href="<?php bp_the_site_blog_link() ?>"><?php bp_the_site_blog_name() ?></a></div>
    96107                                                                <div class="item-meta"><span class="activity"><?php bp_the_site_blog_last_active() ?></span></div>
    97108                                               
    98109                                                                <div class="field-data">
     110
    99111                                                                        <div class="field-name">
     112
    100113                                                                                <strong><?php _e( 'Description: ', 'buddypress' ) ?></strong>
     114
    101115                                                                                <?php bp_the_site_blog_description() ?>
     116
    102117                                                                        </div>
     118
    103119                                                                </div>
    104                                                
     120
    105121                                                                <?php do_action( 'bp_directory_blogs_featured_item' ) ?>
     122
    106123                                                        </div>
     124
    107125                                                </li>
    108126
    109                                         <?php endwhile; ?>
    110                                 </ul>                   
     127                                        <?php endwhile ?>
    111128
    112                                 <?php do_action( 'bp_directory_blogs_featured' ) ?>     
     129                                </ul>
     130
     131                                <?php do_action( 'bp_directory_blogs_featured' ) ?>
    113132               
    114                         <?php else: ?>
     133                        <?php else : ?>
    115134
    116135                                <div id="message" class="info">
     136
    117137                                        <p><?php _e( 'There are not enough blogs to feature.', 'buddypress' ) ?></p>
     138
    118139                                </div>
    119140
    120                         <?php endif; ?>
    121        
     141                        <?php endif ?>
     142
    122143                </div>
    123144
    124                 <?php do_action( 'bp_after_directory_blogs_featured' ) ?>       
     145                <?php do_action( 'bp_after_directory_blogs_featured' ) ?>
    125146
    126147        </div>
    127148
    128         <?php do_action( 'bp_after_directory_blogs_sidebar' ) ?>               
     149        <?php do_action( 'bp_after_directory_blogs_sidebar' ) ?>
    129150
    130151<?php get_footer() ?>
     152 No newline at end of file
  • bp-themes/bp-sn-parent/directories/forums/forums-loop.php

     
    1 <?php if ( bp_has_forum_topics( 'type=' . bp_get_forum_topic_type() . '&per_page=25&max=250' ) ) : ?>   
    2                
    3         <div class="pagination">
    4        
    5                 <div id="post-count" class="pag-count">
    6                         <?php bp_forum_pagination_count() ?>
    7                 </div>
     1        <?php if ( bp_has_forum_topics( 'type=' . bp_get_forum_topic_type() . '&per_page=25&max=250' ) ) : ?>
    82
    9                 <div class="pagination-links" id="topic-pag">
    10                         <?php bp_forum_pagination() ?>
     3                <div class="pagination">
     4
     5                        <div id="post-count" class="pag-count">
     6
     7                                <?php bp_forum_pagination_count() ?>
     8
     9                        </div>
     10
     11                        <div class="pagination-links" id="topic-pag">
     12
     13                                <?php bp_forum_pagination() ?>
     14
     15                        </div>
     16
    1117                </div>
    12        
    13         </div>
    1418
    15         <?php do_action( 'bp_before_directory_forums_list' ) ?>         
    16        
    17         <table id="global-forum-topic-list">
    18                
    19                 <tr>
    20                         <th id="th-title"><?php _e( 'Topic Title', 'buddypress' ) ?></th>
    21                         <th id="th-poster"><?php _e( 'Last Poster', 'buddypress' ) ?></th>
    22                         <th id="th-group"><?php _e( 'Posted In', 'buddypress' ) ?></th>
    23                         <th id="th-postcount"><?php _e( 'Posts', 'buddypress' ) ?></th>
    24                         <th id="th-freshness"><?php _e( 'Freshness', 'buddypress' ) ?></th>
    25                 </tr>
    26                
    27                 <?php while ( bp_forum_topics() ) : bp_the_forum_topic(); ?>
    28                        
    29                 <tr class="<?php bp_the_topic_css_class() ?>">
    30                         <td class="td-title">
    31                                 <a class="topic-title" href="<?php bp_the_topic_permalink() ?>" title="<?php bp_the_topic_title() ?> - <?php _e( 'Permalink', 'buddypress' ) ?>">
    32                                         <?php bp_the_topic_title() ?>
    33                                 </a>
    34                         </td>
    35                         <td class="td-poster">
    36                                 <a href="<?php bp_the_topic_permalink() ?>">
    37                                         <?php bp_the_topic_last_poster_avatar( 'type=thumb&width=20&height=20' ) ?>
    38                                 </a>
    39                                 <div class="poster-name"><?php bp_the_topic_last_poster_name() ?></div>
    40                         </td>
    41                         <td class="td-group">
    42                                 <a href="<?php bp_the_topic_object_permalink() ?>"><?php bp_the_topic_object_avatar( 'type=thumb&width=20&height=20' ) ?></a>
    43                                 <div class="object-name"><a href="<?php bp_the_topic_object_permalink() ?>" title="<?php bp_the_topic_object_name() ?>"><?php bp_the_topic_object_name() ?></a></div>
    44                         </td>
    45                         <td class="td-postcount">
    46                                 <?php bp_the_topic_total_posts() ?>
    47                         </td>
    48                         <td class="td-freshness">
    49                                 <?php bp_the_topic_time_since_last_post() ?>
    50                         </td>
     19                <?php do_action( 'bp_before_directory_forums_list' ) ?>
    5120
    52                         <?php do_action( 'bp_directory_forums_extra_cell' ) ?>         
    53                 </tr>
     21                <table id="global-forum-topic-list">
    5422
    55                 <?php do_action( 'bp_directory_forums_extra_row' ) ?>           
     23                        <tr>
     24
     25                                <th id="th-title"><?php _e( 'Topic Title', 'buddypress' ) ?></th>
     26                                <th id="th-poster"><?php _e( 'Last Poster', 'buddypress' ) ?></th>
     27                                <th id="th-group"><?php _e( 'Posted In', 'buddypress' ) ?></th>
     28                                <th id="th-postcount"><?php _e( 'Posts', 'buddypress' ) ?></th>
     29                                <th id="th-freshness"><?php _e( 'Freshness', 'buddypress' ) ?></th>
     30
     31                        </tr>
     32
     33                        <?php while ( bp_forum_topics() ) : bp_the_forum_topic() ?>
     34
     35                                <tr class="<?php bp_the_topic_css_class() ?>">
     36
     37                                        <td class="td-title">
     38
     39                                                <a class="topic-title" href="<?php bp_the_topic_permalink() ?>" title="<?php printf( esc_attr__( '%s - Permalink', 'buddypress' ), bp_get_the_topic_title() ) ?>"><?php bp_the_topic_title() ?></a>
     40
     41                                        </td>
     42
     43                                        <td class="td-poster">
     44
     45                                                <a href="<?php bp_the_topic_permalink() ?>"><?php bp_the_topic_last_poster_avatar( 'type=thumb&width=20&height=20' ) ?></a>
     46
     47                                                <div class="poster-name">
     48
     49                                                        <?php bp_the_topic_last_poster_name() ?>
     50
     51                                                </div>
     52
     53                                        </td>
     54
     55                                        <td class="td-group">
     56
     57                                                <a href="<?php bp_the_topic_object_permalink() ?>"><?php bp_the_topic_object_avatar( 'type=thumb&width=20&height=20' ) ?></a>
     58
     59                                                <div class="object-name">
     60
     61                                                        <a href="<?php bp_the_topic_object_permalink() ?>" title="<?php bp_the_topic_object_name() ?>"><?php bp_the_topic_object_name() ?></a>
     62
     63                                                </div>
     64
     65                                        </td>
     66
     67                                        <td class="td-postcount">
     68
     69                                                <?php bp_the_topic_total_posts() ?>
     70
     71                                        </td>
     72
     73                                        <td class="td-freshness">
     74
     75                                                <?php bp_the_topic_time_since_last_post() ?>
     76
     77                                        </td>
     78
     79                                        <?php do_action( 'bp_directory_forums_extra_cell' ) ?>
     80
     81                                </tr>
     82
     83                                <?php do_action( 'bp_directory_forums_extra_row' ) ?>
     84
     85                        <?php endwhile ?>
     86
     87                </table>
     88
     89                <?php do_action( 'bp_after_directory_forums_list' ) ?>
    5690               
    57                 <?php endwhile; ?>
    58                
    59         </table>
     91        <?php else : ?>
    6092
    61         <?php do_action( 'bp_after_directory_forums_list' ) ?>         
    62        
    63 <?php else: ?>
     93                <div id="message" class="info">
    6494
    65         <div id="message" class="info">
    66                 <p><?php _e( 'Sorry, there were no forum topics found.', 'buddypress' ) ?></p>
    67         </div>
     95                        <p><?php _e( 'Sorry, there were no forum topics found.', 'buddypress' ) ?></p>
    6896
    69 <?php endif;?>
    70  No newline at end of file
     97                </div>
     98
     99        <?php endif ?>
     100 No newline at end of file
  • bp-themes/bp-sn-parent/directories/forums/index.php

     
    11<?php get_header() ?>
    22
    3         <?php do_action( 'bp_before_directory_forums_content' ) ?>             
     3        <?php do_action( 'bp_before_directory_forums_content' ) ?>
    44
    55        <div id="content">
    6        
     6
    77                <div class="page" id="forums-directory-page">
    8        
    9                         <form action="<?php echo site_url() . '/' ?>" method="post" id="forums-directory-form">
    108
     9                        <form action="<?php echo site_url() ?>/" method="post" id="forums-directory-form">
     10
    1111                                <?php if ( bp_has_site_groups( 'type=most-forum-topics&max=6' ) ) : ?>
    1212
    1313                                        <div id="popular-group-forum-listing">
     14
    1415                                                <h3><?php _e( 'Popular Group Forums', 'buddypress' ) ?></h3>
    15        
    16                                                 <?php do_action( 'bp_before_directory_popular_group_forums' ) ?>               
    1716
    18                                                 <?php while ( bp_site_groups() ) : bp_the_site_group(); ?>
     17                                                <?php do_action( 'bp_before_directory_popular_group_forums' ) ?>
    1918
    20                                                         <div class="group-forum">
     19                                                <?php while ( bp_site_groups() ) : bp_the_site_group() ?>
     20
     21                                                        <div class="group-forum<?php echo ( $i++ & 1 ? '' : ' alt' ) ?>">
     22
    2123                                                                <div class="item-avatar">
     24
    2225                                                                        <a href="<?php bp_the_site_group_link() ?>/forum/"><?php bp_the_site_group_avatar_thumb() ?></a>
     26
    2327                                                                </div>
    2428
    2529                                                                <div class="item">
    26                                                                         <div class="item-title"><a href="<?php bp_the_site_group_link() ?>/forum/"><?php bp_the_site_group_name() ?></a> (<?php bp_the_site_group_forum_topic_count( 'showtext=true' ) ?>, <?php bp_the_site_group_forum_post_count( 'showtext=true' ) ?>)</div>
    27                                                                         <div class="item-meta desc"><?php bp_the_site_group_description_excerpt() ?></div>
    2830
     31                                                                        <div class="item-title">
     32
     33                                                                                <a href="<?php bp_the_site_group_link() ?>/forum/"><?php bp_the_site_group_name() ?></a>
     34
     35                                                                                (<?php bp_the_site_group_forum_topic_count( 'showtext=true' ) ?>, <?php bp_the_site_group_forum_post_count( 'showtext=true' ) ?>)
     36
     37                                                                        </div>
     38
     39                                                                        <div class="item-meta desc">
     40
     41                                                                                <?php bp_the_site_group_description_excerpt() ?>
     42
     43                                                                        </div>
     44
    2945                                                                        <?php do_action( 'bp_directory_popular_group_forums_item' ) ?>
     46
    3047                                                                </div>
     48
    3149                                                        </div>
    3250
    33                                                 <?php endwhile; ?>
     51                                                <?php endwhile ?>
    3452
    35                                                 <?php do_action( 'bp_after_directory_popular_group_forums' ) ?>         
    36        
     53                                                <?php do_action( 'bp_after_directory_popular_group_forums' ) ?>
     54
    3755                                        </div>
    38                                        
    39                                 <?php endif; ?>
    4056
     57                                <?php endif ?>
     58
    4159                                <div id="forums-directory-listing" class="directory-listing">
     60
    4261                                        <h3><?php _e( 'Latest Forum Topics', 'buddypress' ) ?></h3>
    43                                        
     62
    4463                                        <div id="forum-dir-list">
    45                                                
     64
    4665                                                <?php do_action( 'bp_before_directory_forums_topic_filters' ) ?>
    47                                                
     66
    4867                                                <div id="global-forum-topic-filters">
     68
    4969                                                        <ul>
    50                                                                 <li<?php if ( '' == bp_current_action() && !isset( $_GET['fs'] ) ) : ?> class="selected"<?php endif; ?> id="forums-newest"><a href="<?php bp_newest_forum_topics_link() ?>" title="<?php _e( 'Newest Topics', 'buddypress' ) ?>"><?php _e( 'Newest Topics', 'buddypress') ?></a></li>
    51                                                                 <li<?php if ( 'popular' == bp_current_action() ) : ?> class="selected"<?php endif; ?> id="forums-popular"><a href="<?php bp_popular_forum_topics_link() ?>" title="<?php _e( 'Most Popular Topics', 'buddypress' ) ?>"><?php _e( 'Most Popular Topics', 'buddypress') ?></a></li>
    52                                                                 <li<?php if ( 'unreplied' == bp_current_action() ) : ?> class="selected"<?php endif; ?> id="forums-unreplied"><a href="<?php bp_unreplied_forum_topics_link() ?>" title="<?php _e( 'Unreplied Topics', 'buddypress' ) ?>"><?php _e( 'Unreplied Topics', 'buddypress') ?></a></li>
    53                
     70
     71                                                                <li<?php if ( '' == bp_current_action() && !isset( $_GET['fs'] ) ) echo ' class="selected"' ?> id="forums-newest"><a href="<?php bp_newest_forum_topics_link() ?>" title="<?php esc_attr_e( 'Newest Topics', 'buddypress' ) ?>"><?php _e( 'Newest Topics', 'buddypress') ?></a></li>
     72
     73                                                                <li<?php if ( 'popular' == bp_current_action() ) echo ' class="selected"' ?> id="forums-popular"><a href="<?php bp_popular_forum_topics_link() ?>" title="<?php esc_attr_e( 'Most Popular Topics', 'buddypress' ) ?>"><?php _e( 'Most Popular Topics', 'buddypress') ?></a></li>
     74
     75                                                                <li<?php if ( 'unreplied' == bp_current_action() ) echo ' class="selected"' ?> id="forums-unreplied"><a href="<?php bp_unreplied_forum_topics_link() ?>" title="<?php esc_attr_e( 'Unreplied Topics', 'buddypress' ) ?>"><?php _e( 'Unreplied Topics', 'buddypress') ?></a></li>
     76
    5477                                                                <?php if ( is_user_logged_in() ) : ?>
    55                                                                         <li<?php if ( 'personal' == bp_current_action() ) : ?> class="selected"<?php endif; ?> id="forums-personal"><a href="<?php bp_my_forum_topics_link() ?>" title="<?php _e( 'Topics I have started or replied to', 'buddypress' ) ?>"><?php _e( 'My Topics', 'buddypress') ?></a></li>
    56                                                                 <?php endif; ?>
    57                                                                
     78                                                                        <li<?php if ( 'personal' == bp_current_action() ) echo ' class="selected"' ?> id="forums-personal"><a href="<?php bp_my_forum_topics_link() ?>" title="<?php esc_attr_e( 'Topics I have started or replied to', 'buddypress' ) ?>"><?php _e( 'My Topics', 'buddypress') ?></a></li>
     79                                                                <?php endif ?>
     80
    5881                                                                <?php if ( 'tag' == bp_current_action() ) : ?>
    59                                                                         <li class="selected" id="forums-tag"><a href="<?php bp_newest_forum_topics_link() ?>" title="<?php _e( 'Tag', 'buddypress' ) ?>"><?php printf( __( 'Tagged: %s', 'buddypress' ), bp_get_forums_tag_name() ) ?></a></li>
    60                                                                 <?php endif; ?>
    61                                                                
     82                                                                        <li class="selected" id="forums-tag"><a href="<?php bp_newest_forum_topics_link() ?>" title="<?php esc_attr_e( 'Tag', 'buddypress' ) ?>"><?php printf( __( 'Tagged: %s', 'buddypress' ), bp_get_forums_tag_name() ) ?></a></li>
     83                                                                <?php endif ?>
     84
    6285                                                                <?php if ( isset( $_GET['fs'] ) ) : ?>
    63                                                                         <li class="selected" id="forums-search"><a href="<?php bp_newest_forum_topics_link() ?>" title="<?php _e( 'Search', 'buddypress' ) ?>"><?php printf( __( 'Matching: %s', 'buddypress' ), attribute_escape( $_GET['fs'] ) ) ?></a></li>
    64                                                                 <?php endif; ?>
    65                                                                
     86                                                                        <li class="selected" id="forums-search"><a href="<?php bp_newest_forum_topics_link() ?>" title="<?php esc_attr_e( 'Search', 'buddypress' ) ?>"><?php printf( __( 'Matching: %s', 'buddypress' ), attribute_escape( $_GET['fs'] ) ) ?></a></li>
     87                                                                <?php endif ?>
     88
    6689                                                                <?php do_action( 'bp_directory_forums_topic_filters' ) ?>
    67                                                         </ul>                                                           
     90
     91                                                        </ul>
     92
    6893                                                </div>
    69                                                
     94
    7095                                                <?php do_action( 'bp_after_directory_forums_topic_filters' ) ?>
    7196
    7297                                                <?php locate_template( array( 'directories/forums/forums-loop.php' ), true ) ?>
     98
    7399                                        </div>
    74100
    75101                                </div>
    76                        
     102
    77103                                <?php do_action( 'bp_directory_forums_content' ) ?>
    78104
    79105                        </form>
    80        
     106
    81107                </div>
    82        
     108
    83109        </div>
    84110
    85         <?php do_action( 'bp_after_directory_forums_content' ) ?>               
    86         <?php do_action( 'bp_before_directory_forums_sidebar' ) ?>             
     111        <?php do_action( 'bp_after_directory_forums_content' ) ?>
     112        <?php do_action( 'bp_before_directory_forums_sidebar' ) ?>
    87113
    88114        <div id="sidebar" class="directory-sidebar">
    89115
    90                 <?php do_action( 'bp_before_directory_forums_search' ) ?>       
     116                <?php do_action( 'bp_before_directory_forums_search' ) ?>
    91117
    92118                <div id="forums-directory-search" class="directory-widget">
    93                        
     119
    94120                        <h3><?php _e( 'Forum Topic Search', 'buddypress' ) ?></h3>
    95121
    96122                        <?php bp_directory_forums_search_form() ?>
    97123
    98124                        <?php do_action( 'bp_directory_forums_search' ) ?>
    99                                
     125
    100126                </div>
    101127
    102128                <?php do_action( 'bp_after_directory_forums_search' ) ?>
    103                 <?php do_action( 'bp_before_directory_forums_tags' ) ?> 
     129                <?php do_action( 'bp_before_directory_forums_tags' ) ?>
    104130
    105131                <div id="forums-directory-tags" class="directory-widget">
    106                        
     132
    107133                        <h3><?php _e( 'Forum Topic Tags', 'buddypress' ) ?></h3>
    108134
    109                         <?php bp_forums_tag_heat_map(); ?>
     135                        <?php bp_forums_tag_heat_map() ?>
    110136
    111137                        <?php do_action( 'bp_directory_forums_search' ) ?>
    112                                
     138
    113139                </div>
    114140
    115                 <?php do_action( 'bp_after_directory_forums_search' ) ?>       
     141                <?php do_action( 'bp_after_directory_forums_search' ) ?>
    116142
    117143        </div>
    118        
    119         <?php do_action( 'bp_after_directory_forums_sidebar' ) ?>
    120144
     145        <?php do_action( 'bp_after_directory_forums_sidebar' ) ?>
     146
    121147<?php get_footer() ?>
     148 No newline at end of file
  • bp-themes/bp-sn-parent/directories/groups/groups-loop.php

     
    1 <?php if ( bp_has_site_groups( 'type=active&per_page=10' ) ) : ?>
    2        
    3         <div class="pagination">
    4                
    5                 <div class="pag-count" id="group-dir-count">
    6                         <?php bp_site_groups_pagination_count() ?>
    7                 </div>
     1        <?php if ( bp_has_site_groups( 'type=active&per_page=10' ) ) : ?>
    82
    9                 <div class="pagination-links" id="group-dir-pag">
    10                         <?php bp_site_groups_pagination_links() ?>
    11                 </div>
    12        
    13         </div>
    14        
    15         <?php do_action( 'bp_before_directory_groups_list' ) ?>         
     3                <div class="pagination">
    164
    17         <ul id="groups-list" class="item-list">
    18         <?php while ( bp_site_groups() ) : bp_the_site_group(); ?>
     5                        <div class="pag-count" id="group-dir-count">
    196
    20                 <li>
    21                         <div class="item-avatar">
    22                                 <a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_avatar_thumb() ?></a>
     7                                <?php bp_site_groups_pagination_count() ?>
     8
    239                        </div>
    2410
    25                         <div class="item">
    26                                 <div class="item-title"><a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_name() ?></a></div>
    27                                 <div class="item-meta"><span class="activity"><?php bp_the_site_group_last_active() ?></span></div>
     11                        <div class="pagination-links" id="group-dir-pag">
    2812
    29                                 <div class="item-meta desc"><?php bp_the_site_group_description_excerpt() ?></div>
     13                                <?php bp_site_groups_pagination_links() ?>
    3014
    31                                 <?php do_action( 'bp_directory_groups_item' ) ?>
    3215                        </div>
    3316
    34                         <div class="action">
    35                                 <?php bp_the_site_group_join_button() ?>
     17                </div>
    3618
    37                                 <div class="meta">
    38                                         <?php bp_the_site_group_type() ?> / <?php bp_the_site_group_member_count() ?>
     19                <?php do_action( 'bp_before_directory_groups_list' ) ?>
     20
     21                <ul id="groups-list" class="item-list">
     22
     23                <?php while ( bp_site_groups() ) : bp_the_site_group() ?>
     24
     25                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?>>
     26
     27                                <div class="item-avatar">
     28
     29                                        <a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_avatar_thumb() ?></a>
     30
    3931                                </div>
    40                                
    41                                 <?php do_action( 'bp_directory_groups_actions' ) ?>
    42                         </div>
    4332
    44                         <div class="clear"></div>
    45                 </li>
     33                                <div class="item">
    4634
    47         <?php endwhile; ?>
    48         </ul>           
     35                                        <div class="item-title">
    4936
    50         <?php do_action( 'bp_after_directory_groups_list' ) ?>         
    51                        
    52 <?php else: ?>
     37                                                <a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_name() ?></a>
    5338
    54         <div id="message" class="info">
    55                 <p><?php _e( 'There were no groups found.', 'buddypress' ) ?></p>
    56         </div>
     39                                        </div>
    5740
    58 <?php endif; ?>
     41                                        <div class="item-meta">
    5942
    60 <?php bp_the_site_group_hidden_fields() ?>
    61  No newline at end of file
     43                                                <span class="activity"><?php bp_the_site_group_last_active() ?></span>
     44
     45                                        </div>
     46
     47                                        <div class="item-meta desc">
     48
     49                                                <?php bp_the_site_group_description_excerpt() ?>
     50
     51                                        </div>
     52
     53                                        <?php do_action( 'bp_directory_groups_item' ) ?>
     54
     55                                </div>
     56
     57                                <div class="action">
     58
     59                                        <?php bp_the_site_group_join_button() ?>
     60
     61                                        <div class="meta">
     62
     63                                                <?php bp_the_site_group_type() ?>
     64
     65                                                <?php _e( '/', 'buddypress' ) ?>
     66
     67                                                <?php bp_the_site_group_member_count() ?>
     68
     69                                        </div>
     70
     71                                        <?php do_action( 'bp_directory_groups_actions' ) ?>
     72
     73                                </div>
     74
     75                                <div class="clear"></div>
     76
     77                        </li>
     78
     79                <?php endwhile ?>
     80
     81                </ul>
     82
     83                <?php do_action( 'bp_after_directory_groups_list' ) ?>
     84
     85        <?php else : ?>
     86
     87                <div id="message" class="info">
     88
     89                        <p><?php _e( 'There were no groups found.', 'buddypress' ) ?></p>
     90
     91                </div>
     92
     93        <?php endif ?>
     94
     95        <?php bp_the_site_group_hidden_fields() ?>
     96 No newline at end of file
  • bp-themes/bp-sn-parent/directories/groups/index.php

     
    11<?php get_header() ?>
    22
    3         <?php do_action( 'bp_before_directory_groups_content' ) ?>             
     3        <?php do_action( 'bp_before_directory_groups_content' ) ?>
    44
    55        <div id="content">
    6        
     6
    77                <div class="page" id="groups-directory-page">
    8        
     8
    99                        <form action="<?php echo site_url() . '/' ?>" method="post" id="groups-directory-form">
     10
    1011                                <h3><?php _e( 'Groups Directory', 'buddypress' ) ?></h3>
    11                
     12
    1213                                <ul id="letter-list">
     14
    1315                                        <li><a href="#a" id="letter-a">A</a></li>
    1416                                        <li><a href="#b" id="letter-b">B</a></li>
    1517                                        <li><a href="#c" id="letter-c">C</a></li>
     
    3638                                        <li><a href="#x" id="letter-x">X</a></li>
    3739                                        <li><a href="#y" id="letter-y">Y</a></li>
    3840                                        <li><a href="#z" id="letter-z">Z</a></li>
     41
    3942                                </ul>
    4043
    4144                                <div id="groups-directory-listing" class="directory-listing">
     45
    4246                                        <h3><?php _e( 'Groups Listing', 'buddypress' ) ?></h3>
    43                        
     47
    4448                                        <div id="group-dir-list">
     49
    4550                                                <?php locate_template( array( 'directories/groups/groups-loop.php' ), true ) ?>
     51
    4652                                        </div>
    4753
    4854                                </div>
    49                        
     55
    5056                                <?php do_action( 'bp_directory_groups_content' ) ?>
    5157
    5258                                <?php wp_nonce_field( 'directory_groups', '_wpnonce-group-filter' ) ?>
     
    5763       
    5864        </div>
    5965
    60         <?php do_action( 'bp_after_directory_groups_content' ) ?>               
    61         <?php do_action( 'bp_before_directory_groups_sidebar' ) ?>             
     66        <?php do_action( 'bp_after_directory_groups_content' ) ?>
     67        <?php do_action( 'bp_before_directory_groups_sidebar' ) ?>
    6268
    6369        <div id="sidebar" class="directory-sidebar">
    6470
    65                 <?php do_action( 'bp_before_directory_groups_search' ) ?>       
     71                <?php do_action( 'bp_before_directory_groups_search' ) ?>
    6672
    6773                <div id="groups-directory-search" class="directory-widget">
    68                        
     74
    6975                        <h3><?php _e( 'Find Groups', 'buddypress' ) ?></h3>
    7076
    7177                        <?php bp_directory_groups_search_form() ?>
    7278
    7379                        <?php do_action( 'bp_directory_groups_search' ) ?>
    74                                
     80
    7581                </div>
    7682
    77                 <?php do_action( 'bp_after_directory_groups_search' ) ?>       
    78                 <?php do_action( 'bp_before_directory_groups_featured' ) ?>     
     83                <?php do_action( 'bp_after_directory_groups_search' ) ?>
     84                <?php do_action( 'bp_before_directory_groups_featured' ) ?>
    7985
    8086                <div id="groups-directory-featured" class="directory-widget">
    81                        
     87
    8288                        <h3><?php _e( 'Random Groups', 'buddypress' ) ?></h3>
    83                
     89
    8490                        <?php if ( bp_has_site_groups( 'type=random&max=3' ) ) : ?>
    8591
    8692                                <ul id="groups-list" class="item-list">
    87                                         <?php while ( bp_site_groups() ) : bp_the_site_group(); ?>
    8893
    89                                                 <li>
     94                                        <?php while ( bp_site_groups() ) : bp_the_site_group() ?>
     95
     96                                                <li<?php echo ( $j++ & 1 ? '' : ' class="alt"' ) ?>>
     97
    9098                                                        <div class="item-avatar">
     99
    91100                                                                <a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_avatar_thumb() ?></a>
     101
    92102                                                        </div>
    93103
    94104                                                        <div class="item">
    95                                                        
    96                                                                 <div class="item-title"><a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_name() ?></a></div>
    97                                                                 <div class="item-meta"><span class="activity"><?php bp_the_site_group_last_active() ?></span></div>
    98                                                
     105
     106                                                                <div class="item-title">
     107
     108                                                                        <a href="<?php bp_the_site_group_link() ?>"><?php bp_the_site_group_name() ?></a>
     109
     110                                                                </div>
     111
     112                                                                <div class="item-meta">
     113
     114                                                                        <span class="activity"><?php bp_the_site_group_last_active() ?></span>
     115
     116                                                                </div>
     117
    99118                                                                <div class="field-data">
     119
    100120                                                                        <div class="field-name">
     121
    101122                                                                                <strong><?php _e( 'Members:', 'buddypress' ) ?></strong>
     123
    102124                                                                                <?php bp_the_site_group_member_count() ?>
     125
    103126                                                                        </div>
    104                                                        
     127
    105128                                                                        <div class="field-name">
     129
    106130                                                                                <strong><?php _e( 'Description:', 'buddypress' ) ?></strong>
     131
    107132                                                                                <?php bp_the_site_group_description_excerpt() ?>
     133
    108134                                                                        </div>
     135
    109136                                                                </div>
    110                                                
     137
    111138                                                                <?php do_action( 'bp_directory_groups_featured_item' ) ?>
    112                                                        
     139
    113140                                                        </div>
    114141
    115142                                                </li>
    116143
    117                                         <?php endwhile; ?>
    118                                 </ul>           
     144                                        <?php endwhile ?>
    119145
    120                                 <?php do_action( 'bp_directory_groups_featured' ) ?>   
    121                                
    122                         <?php else: ?>
     146                                </ul>
    123147
     148                                <?php do_action( 'bp_directory_groups_featured' ) ?>
     149
     150                        <?php else : ?>
     151
    124152                                <div id="message" class="info">
     153
    125154                                        <p><?php _e( 'No groups found.', 'buddypress' ) ?></p>
     155
    126156                                </div>
    127157
    128                         <?php endif; ?>
    129        
     158                        <?php endif ?>
     159
    130160                </div>
    131161
    132                 <?php do_action( 'bp_after_directory_groups_featured' ) ?>     
     162                <?php do_action( 'bp_after_directory_groups_featured' ) ?>
    133163
    134164        </div>
    135        
    136         <?php do_action( 'bp_after_directory_groups_sidebar' ) ?>
    137165
     166        <?php do_action( 'bp_after_directory_groups_sidebar' ) ?>
     167
    138168<?php get_footer() ?>
     169 No newline at end of file
  • bp-themes/bp-sn-parent/directories/members/index.php

     
    11<?php get_header() ?>
    22
    3         <?php do_action( 'bp_before_directory_members_content' ) ?>             
     3        <?php do_action( 'bp_before_directory_members_content' ) ?>
    44
    55        <div id="content">
    6        
     6
    77                <div class="page" id="members-directory-page">
    8        
     8
    99                        <form action="<?php echo site_url() . '/' ?>" method="post" id="members-directory-form">
     10
    1011                                <h3><?php _e( 'Members Directory', 'buddypress' ) ?></h3>
    11                
     12
    1213                                <ul id="letter-list">
     14
    1315                                        <li><a href="#a" id="letter-a">A</a></li>
    1416                                        <li><a href="#b" id="letter-b">B</a></li>
    1517                                        <li><a href="#c" id="letter-c">C</a></li>
     
    3638                                        <li><a href="#x" id="letter-x">X</a></li>
    3739                                        <li><a href="#y" id="letter-y">Y</a></li>
    3840                                        <li><a href="#z" id="letter-z">Z</a></li>
     41
    3942                                </ul>
    4043
    4144                                <div id="members-directory-listing" class="directory-widget">
     45
    4246                                        <h3><?php _e( 'Member Listing', 'buddypress' ) ?></h3>
    43                        
     47
    4448                                        <div id="member-dir-list">
     49
    4550                                                <?php locate_template( array( 'directories/members/members-loop.php' ), true ) ?>
     51
    4652                                        </div>
    4753
    4854                                </div>
    4955
    5056                                <?php do_action( 'bp_directory_members_content' ) ?>
    51                                
    52                                 <?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ) ?> 
    53                                
     57
     58                                <?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ) ?>
     59
    5460                        </form>
    55        
     61
    5662                </div>
    5763
    5864        </div>
    59        
    60         <?php do_action( 'bp_after_directory_members_content' ) ?>             
    61         <?php do_action( 'bp_before_directory_members_sidebar' ) ?>             
    6265
     66        <?php do_action( 'bp_after_directory_members_content' ) ?>
     67        <?php do_action( 'bp_before_directory_members_sidebar' ) ?>
     68
    6369        <div id="sidebar" class="directory-sidebar">
    64                
     70
    6571                <?php do_action( 'bp_before_directory_members_search' ) ?>
    6672
    6773                <div id="members-directory-search" class="directory-widget">
     74
    6875                        <h3><?php _e( 'Find Members', 'buddypress' ) ?></h3>
    6976
    7077                        <?php bp_directory_members_search_form() ?>
    7178
    7279                        <?php do_action( 'bp_directory_members_search' ) ?>
     80
    7381                </div>
    7482
    75                 <?php do_action( 'bp_after_directory_members_search' ) ?>       
    76                 <?php do_action( 'bp_before_directory_members_featured' ) ?>   
     83                <?php do_action( 'bp_after_directory_members_search' ) ?>
     84                <?php do_action( 'bp_before_directory_members_featured' ) ?>
    7785
    7886                <div id="members-directory-featured" class="directory-widget">
     87
    7988                        <h3><?php _e( 'Random Members', 'buddypress' ) ?></h3>
    80                
     89
    8190                        <?php if ( bp_has_site_members( 'type=random&max=3' ) ) : ?>
    8291
    8392                                <ul id="featured-members-list" class="item-list">
    84                                 <?php while ( bp_site_members() ) : bp_the_site_member(); ?>
    8593
    86                                         <li>
    87                                                 <div class="item-avatar">
    88                                                         <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_avatar() ?></a>
    89                                                 </div>
     94                                        <?php while ( bp_site_members() ) : bp_the_site_member() ?>
    9095
    91                                                 <div class="item">
    92                                                         <div class="item-title"><a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_name() ?></a></div>
    93                                                         <div class="item-meta"><span class="activity"><?php bp_the_site_member_last_active() ?></span></div>
    94                                                
    95                                                         <div class="field-data">
    96                                                                 <div class="field-name"><?php bp_the_site_member_total_friend_count() ?></div>
    97                                                                 <div class="field-name xprofile-data"><?php bp_the_site_member_random_profile_data() ?></div>
     96                                                <li<?php echo ( $j++ & 1 ? '' : ' class="alt"' ) ?>>
     97
     98                                                        <div class="item-avatar">
     99
     100                                                                <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_avatar() ?></a>
     101
    98102                                                        </div>
    99                                                
    100                                                         <?php do_action( 'bp_directory_members_featured_item' ) ?>
    101                                                 </div>
    102                                         </li>
    103103
    104                                 <?php endwhile; ?>
    105                                 </ul>                   
     104                                                        <div class="item">
    106105
    107                                 <?php do_action( 'bp_directory_members_featured' ) ?>   
    108                        
    109                         <?php else: ?>
     106                                                                <div class="item-title">
    110107
     108                                                                        <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_name() ?></a>
     109
     110                                                                </div>
     111
     112                                                                <div class="item-meta">
     113
     114                                                                        <span class="activity"><?php bp_the_site_member_last_active() ?></span>
     115
     116                                                                </div>
     117
     118                                                                <div class="field-data">
     119
     120                                                                        <div class="field-name">
     121
     122                                                                                <?php bp_the_site_member_total_friend_count() ?>
     123
     124                                                                        </div>
     125
     126                                                                        <div class="field-name xprofile-data">
     127
     128                                                                                <?php bp_the_site_member_random_profile_data() ?>
     129
     130                                                                        </div>
     131
     132                                                                </div>
     133
     134                                                                <?php do_action( 'bp_directory_members_featured_item' ) ?>
     135
     136                                                        </div>
     137
     138                                                </li>
     139
     140                                        <?php endwhile ?>
     141
     142                                </ul>
     143
     144                                <?php do_action( 'bp_directory_members_featured' ) ?>
     145
     146                        <?php else : ?>
     147
    111148                                <div id="message" class="info">
     149
    112150                                        <p><?php _e( 'There are not enough members to feature.', 'buddypress' ) ?></p>
     151
    113152                                </div>
    114153
    115                         <?php endif; ?>
    116        
     154                        <?php endif ?>
     155
    117156                </div>
    118157
    119                 <?php do_action( 'bp_after_directory_members_featured' ) ?>     
     158                <?php do_action( 'bp_after_directory_members_featured' ) ?>
    120159
    121160        </div>
    122161
    123         <?php do_action( 'bp_after_directory_members_sidebar' ) ?>             
     162        <?php do_action( 'bp_after_directory_members_sidebar' ) ?>
    124163
    125164<?php get_footer() ?>
     165 No newline at end of file
  • bp-themes/bp-sn-parent/directories/members/members-loop.php

     
    1 <?php if ( bp_has_site_members( 'type=active&per_page=10' ) ) : ?>
    2        
    3         <div class="pagination">
    4                
    5                 <div class="pag-count" id="member-dir-count">
    6                         <?php bp_site_members_pagination_count() ?>
    7                 </div>
     1        <?php if ( bp_has_site_members( 'type=active&per_page=10' ) ) : ?>
    82
    9                 <div class="pagination-links" id="member-dir-pag">
    10                         <?php bp_site_members_pagination_links() ?>
    11                 </div>
     3                <div class="pagination">
    124
    13         </div>
    14        
    15         <?php do_action( 'bp_before_directory_members_list' ) ?>               
     5                        <div class="pag-count" id="member-dir-count">
    166
    17         <ul id="members-list" class="item-list">
    18         <?php while ( bp_site_members() ) : bp_the_site_member(); ?>
     7                                <?php bp_site_members_pagination_count() ?>
    198
    20                 <li>
    21                         <div class="item-avatar">
    22                                 <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_avatar() ?></a>
    239                        </div>
    2410
    25                         <div class="item">
    26                                 <div class="item-title"><a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_name() ?></a></div>
    27                                 <div class="item-meta"><span class="activity"><?php bp_the_site_member_last_active() ?></span></div>
     11                        <div class="pagination-links" id="member-dir-pag">
    2812
    29                                 <?php do_action( 'bp_directory_members_item' ) ?>
     13                                <?php bp_site_members_pagination_links() ?>
     14
    3015                        </div>
    3116
    32                         <div class="action">
    33                                 <?php bp_the_site_member_add_friend_button() ?>
     17                </div>
    3418
    35                                 <?php do_action( 'bp_directory_members_actions' ) ?>
    36                         </div>
     19                <?php do_action( 'bp_before_directory_members_list' ) ?>
    3720
    38                         <div class="clear"></div>
    39                 </li>
     21                <ul id="members-list" class="item-list">
    4022
    41         <?php endwhile; ?>
    42         </ul>           
     23                <?php while ( bp_site_members() ) : bp_the_site_member() ?>
    4324
    44         <?php do_action( 'bp_after_directory_members_list' ) ?>         
    45                        
    46 <?php else: ?>
     25                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?>>
    4726
    48         <div id="message" class="info">
    49                 <p><?php _e( 'No members found. Members must fill in at least one piece of profile data to show in member lists.', 'buddypress' ) ?></p>
    50         </div>
     27                                <div class="item-avatar">
    5128
    52 <?php endif; ?>
     29                                        <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_avatar() ?></a>
    5330
    54 <?php bp_the_site_member_hidden_fields() ?>
    55  No newline at end of file
     31                                </div>
     32
     33                                <div class="item">
     34
     35                                        <div class="item-title">
     36
     37                                                <a href="<?php bp_the_site_member_link() ?>"><?php bp_the_site_member_name() ?></a>
     38
     39                                        </div>
     40
     41                                        <div class="item-meta">
     42
     43                                                <span class="activity"><?php bp_the_site_member_last_active() ?></span>
     44
     45                                        </div>
     46
     47                                        <?php do_action( 'bp_directory_members_item' ) ?>
     48
     49                                </div>
     50
     51                                <div class="action">
     52
     53                                        <?php bp_the_site_member_add_friend_button() ?>
     54
     55                                        <?php do_action( 'bp_directory_members_actions' ) ?>
     56
     57                                </div>
     58
     59                                <div class="clear"></div>
     60
     61                        </li>
     62
     63                <?php endwhile ?>
     64
     65                </ul>           
     66
     67                <?php do_action( 'bp_after_directory_members_list' ) ?>
     68
     69        <?php else : ?>
     70
     71                <div id="message" class="info">
     72
     73                        <p><?php _e( 'No members found. Members must fill in at least one piece of profile data to show in member lists.', 'buddypress' ) ?></p>
     74
     75                </div>
     76
     77        <?php endif ?>
     78
     79        <?php bp_the_site_member_hidden_fields() ?>
     80 No newline at end of file
  • bp-themes/bp-sn-parent/footer.php

     
    1                 </div> <!-- #container -->
    2                
     1                </div><!-- #container -->
     2
    33                <?php do_action( 'bp_after_container' ) ?>
    4        
     4
    55                <div class="clear"></div>
    6        
    7                 <?php do_action( 'bp_before_footer' ) ?>               
    86
     7                <?php do_action( 'bp_before_footer' ) ?>
     8
    99                <div id="footer">
    10                     <p><?php printf( __( '%s is proudly powered by <a href="http://mu.wordpress.org">WordPress MU</a> and <a href="http://buddypress.org">BuddyPress</a>', 'buddypress' ), bloginfo('name') ); ?></p>
    11        
     10
     11                    <p><?php printf( __( '%s is proudly powered by <a href="http://mu.wordpress.org">WordPress MU</a> and <a href="http://buddypress.org">BuddyPress</a>', 'buddypress' ), bloginfo( 'name' ) ) ?></p>
     12
    1213                        <?php do_action( 'bp_footer' ) ?>
     14
    1315                </div>
    1416
    1517                <?php do_action( 'bp_after_footer' ) ?>
    1618
    17                 <?php wp_footer(); ?>
    18        
     19                <?php wp_footer() ?>
     20
    1921        </body>
    2022
    2123</html>
     24 No newline at end of file
  • bp-themes/bp-sn-parent/friends/friends-loop.php

     
    1 <?php do_action( 'bp_before_my_friends_loop' ) ?>               
     1        <?php do_action( 'bp_before_my_friends_loop' ) ?>
    22
    3 <div id="friends-loop">
    4        
    5         <?php if ( bp_has_friendships() ) : ?>
    6                
    7                 <div class="pagination">
     3        <div id="friends-loop">
    84
    9                         <div class="pag-count">
    10                                 <?php bp_friend_pagination_count() ?>
     5                <?php if ( bp_has_friendships() ) : ?>
     6
     7                        <div class="pagination">
     8
     9                                <div class="pag-count">
     10
     11                                        <?php bp_friend_pagination_count() ?>
     12
     13                                </div>
     14
     15                                <div class="pagination-links" id="pag">
     16
     17                                        <?php bp_friend_pagination() ?>
     18
     19                                </div>
     20
    1121                        </div>
    12                        
    13                         <div class="pagination-links" id="pag">
    14                                 <?php bp_friend_pagination() ?>
    15                         </div>
    16                
    17                 </div>
    18                
    19                 <?php do_action( 'bp_before_my_friends_list' ) ?>
    20                
    21                 <ul id="friend-list" class="item-list">
    22                         <?php while ( bp_user_friendships() ) : bp_the_friendship(); ?>
    23                        
    24                                 <li>
    25                                         <?php bp_friend_avatar_thumb() ?>
    26                                         <h4><?php bp_friend_link() ?></h4>
    27                                         <span class="activity"><?php bp_friend_last_active() ?></span>
    2822
    29                                         <?php do_action( 'bp_my_friends_list_item' ) ?>
    30                                                                
    31                                         <div class="action">
    32                                                 <?php bp_add_friend_button() ?>
    33                                                
    34                                                 <?php do_action( 'bp_my_friends_list_item_action' ) ?>
    35                                         </div>
    36                                 </li>
    37                
    38                         <?php endwhile; ?>
    39                 </ul>
     23                        <?php do_action( 'bp_before_my_friends_list' ) ?>
    4024
    41                 <?php do_action( 'bp_after_my_friends_list' ) ?>
    42                
    43         <?php else: ?>
     25                        <ul id="friend-list" class="item-list">
    4426
    45                 <?php if ( bp_friends_is_filtered() ) : ?>
    46                        
    47                         <div id="message" class="info">
    48                                 <p><?php _e( "No friends matched your search filter terms", 'buddypress' ) ?></p>
    49                         </div>                 
    50                        
     27                                <?php while ( bp_user_friendships() ) : bp_the_friendship() ?>
     28
     29                                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?>>
     30
     31                                                <?php bp_friend_avatar_thumb() ?>
     32
     33                                                <h4><?php bp_friend_link() ?></h4>
     34
     35                                                <span class="activity"><?php bp_friend_last_active() ?></span>
     36
     37                                                <?php do_action( 'bp_my_friends_list_item' ) ?>
     38
     39                                                <div class="action">
     40
     41                                                        <?php bp_add_friend_button() ?>
     42
     43                                                        <?php do_action( 'bp_my_friends_list_item_action' ) ?>
     44
     45                                                </div>
     46
     47                                        </li>
     48
     49                                <?php endwhile ?>
     50
     51                        </ul>
     52
     53                        <?php do_action( 'bp_after_my_friends_list' ) ?>
     54
    5155                <?php else : ?>
    52                        
    53                         <div id="message" class="info">
    54                                 <p><?php bp_word_or_name( __( "Your friends list is currently empty", 'buddypress' ), __( "%s's friends list is currently empty", 'buddypress' ) ) ?></p>
    55                         </div>
    56                        
    57                 <?php endif; ?>
    58                
    59                 <?php if ( bp_is_home() && !bp_friends_is_filtered() ) : ?>
    6056
    61                         <?php do_action( 'bp_before_random_members_list' ) ?>
    62                                                
    63                         <h3><?php _e( 'Why not make friends with some of these members?', 'buddypress' ) ?></h3>
    64                         <?php bp_friends_random_members() ?>
     57                        <?php if ( bp_friends_is_filtered() ) : ?>
    6558
    66                         <?php do_action( 'bp_after_random_members_list' ) ?>
    67                
    68                 <?php endif; ?>
    69                
    70         <?php endif;?>
    71        
    72 </div>
     59                                <div id="message" class="info">
    7360
    74 <?php do_action( 'bp_after_my_friends_loop' ) ?>       
    75  No newline at end of file
     61                                        <p><?php _e( "No friends matched your search filter terms", 'buddypress' ) ?></p>
     62
     63                                </div>
     64
     65                        <?php else : ?>
     66
     67                                <div id="message" class="info">
     68
     69                                        <p><?php bp_word_or_name( __( "Your friends list is currently empty", 'buddypress' ), __( "%s's friends list is currently empty", 'buddypress' ) ) ?></p>
     70
     71                                </div>
     72
     73                        <?php endif ?>
     74
     75                        <?php if ( bp_is_home() && !bp_friends_is_filtered() ) : ?>
     76
     77                                <?php do_action( 'bp_before_random_members_list' ) ?>
     78
     79                                <h3><?php _e( 'Why not make friends with some of these members?', 'buddypress' ) ?></h3>
     80
     81                                <?php bp_friends_random_members() ?>
     82
     83                                <?php do_action( 'bp_after_random_members_list' ) ?>
     84
     85                        <?php endif ?>
     86
     87                <?php endif ?>
     88
     89        </div>
     90
     91        <?php do_action( 'bp_after_my_friends_loop' ) ?>
     92 No newline at end of file
  • bp-themes/bp-sn-parent/friends/index.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <ul class="content-header-nav">
     6
    57                        <?php bp_friends_header_tabs() ?>
     8
    69                </ul>
     10
    711        </div>
    812
    913        <div id="content">
    10                 <h2><?php bp_word_or_name( __( "My Friends", 'buddypress' ), __( "%s's Friends", 'buddypress' ) ) ?> &raquo; <?php bp_friends_filter_title() ?></h2>
    1114
    12                 <?php do_action( 'bp_before_my_friends_content' ) ?>           
    13        
     15                <h2><?php printf( __( '%1$s &raquo; %2$s', 'buddypress' ), bp_word_or_name( __( "My Friends", 'buddypress' ), __( "%s's Friends", 'buddypress' ), true, false ), bp_get_friends_filter_title() ) ?></h2>
     16
     17                <?php do_action( 'bp_before_my_friends_content' ) ?>
     18
    1419                <div class="left-menu">
     20
    1521                        <?php do_action( 'bp_before_my_friends_search' ) ?>
    1622
    1723                        <?php bp_friend_search_form() ?>
    18                        
     24
    1925                        <?php do_action( 'bp_after_my_friends_search' ) ?>
     26
    2027                </div>
    2128
    2229                <div class="main-column">
     30
    2331                        <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    24                
     32
    2533                        <?php locate_template( array( 'friends/friends-loop.php' ), true ) ?>
     34
    2635                </div>
    2736
    28                 <?php do_action( 'bp_after_my_friends_content' ) ?>             
     37                <?php do_action( 'bp_after_my_friends_content' ) ?>
     38
    2939        </div>
    3040
    3141<?php get_footer() ?>
     42 No newline at end of file
  • bp-themes/bp-sn-parent/friends/requests.php

     
    11<?php get_header() ?>
    22
    3         <div class="content-header">
    4         </div>
     3        <div class="content-header"><!-- --></div>
    54
    65        <div id="content">
    7                
     6
    87                <div class="pagination">
    9                
     8
    109                        <div class="pagination-links" id="pag">
     10
    1111                                <?php bp_friend_pagination() ?>
     12
    1213                        </div>
    13                
     14
    1415                </div>
    15                
    16                 <h2><?php _e( 'Friendship Requests', 'buddypress' ); ?></h2>
     16
     17                <h2><?php _e( 'Friendship Requests', 'buddypress' ) ?></h2>
     18
    1719                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    1820
    19                 <?php do_action( 'bp_before_friend_requests_content' ) ?>               
    20        
     21                <?php do_action( 'bp_before_friend_requests_content' ) ?>
     22
    2123                <?php if ( bp_has_friendships() ) : ?>
    22                        
     24
    2325                        <ul id="friend-list" class="item-list">
    24                                 <?php while ( bp_user_friendships() ) : bp_the_friendship(); ?>
    25                                        
    26                                         <li>
     26
     27                                <?php while ( bp_user_friendships() ) : bp_the_friendship() ?>
     28
     29                                        <li<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?>>
     30
    2731                                                <?php bp_friend_avatar_thumb() ?>
     32
    2833                                                <h4><?php bp_friend_link() ?></h4>
     34
    2935                                                <span class="activity"><?php bp_friend_time_since_requested() ?></span>
    30                                                
    31                                                 <?php do_action( 'bp_friend_requests_item' ) ?> 
    32                                                
     36
     37                                                <?php do_action( 'bp_friend_requests_item' ) ?>
     38
    3339                                                <div class="action">
     40
    3441                                                        <div class="generic-button accept">
    35                                                                 <a href="<?php bp_friend_accept_request_link() ?>"><?php _e( 'Accept', 'buddypress' ); ?></a>
     42
     43                                                                <a href="<?php bp_friend_accept_request_link() ?>"><?php _e( 'Accept', 'buddypress' ) ?></a>
     44
    3645                                                        </div>
    37                                        
    38                                                          &nbsp;
    39                                        
     46
     47                                                        &nbsp;
     48
    4049                                                        <div class="generic-button reject">
    41                                                                 <a href="<?php bp_friend_reject_request_link() ?>"><?php _e( 'Reject', 'buddypress' ); ?></a>
     50
     51                                                                <a href="<?php bp_friend_reject_request_link() ?>"><?php _e( 'Reject', 'buddypress' ) ?></a>
     52
    4253                                                        </div>
    43                                                        
    44                                                         <?php do_action( 'bp_friend_requests_item_action' ) ?> 
     54
     55                                                        <?php do_action( 'bp_friend_requests_item_action' ) ?>
     56
    4557                                                </div>
     58
    4659                                        </li>
    47                                        
    48                                 <?php endwhile; ?>
     60
     61                                <?php endwhile ?>
     62
    4963                        </ul>
    50                        
    51                         <?php do_action( 'bp_friend_requests_content' ) ?>             
    52                        
    53                 <?php else: ?>
    5464
     65                        <?php do_action( 'bp_friend_requests_content' ) ?>
     66
     67                <?php else : ?>
     68
    5569                        <div id="message" class="info">
    56                                 <p><?php _e( 'You have no pending friendship requests.', 'buddypress' ); ?></p>
     70
     71                                <p><?php _e( 'You have no pending friendship requests.', 'buddypress' ) ?></p>
     72
    5773                        </div>
    5874
    59                 <?php endif;?>
     75                <?php endif ?>
    6076
    61                 <?php do_action( 'bp_after_friend_requests_content' ) ?>               
    62                
     77                <?php do_action( 'bp_after_friend_requests_content' ) ?>
     78
    6379        </div>
    6480
    6581<?php get_footer() ?>
     82 No newline at end of file
  • bp-themes/bp-sn-parent/functions.php

     
    11<?php
    22
    33/* Register the widget columns */
    4 register_sidebars( 1, 
    5         array( 
     4register_sidebars( 1,
     5        array(
    66                'name' => 'first-section',
    77                'before_widget' => '<div id="%1$s" class="widget %2$s">',
    8         'after_widget' => '</div>',
    9         'before_title' => '<h2 class="widgettitle">',
    10         'after_title' => '</h2>'
    11         ) 
     8                'after_widget' => '</div>',
     9                'before_title' => '<h2 class="widgettitle">',
     10                'after_title' => '</h2>'
     11        )
    1212);
    1313
    1414register_sidebars( 1,
    15         array( 
     15        array(
    1616                'name' => 'second-section',
    1717                'before_widget' => '<div id="%1$s" class="widget %2$s">',
    18         'after_widget' => '</div>',
    19         'before_title' => '<h2 class="widgettitle">',
    20         'after_title' => '</h2>'
    21         ) 
     18                'after_widget' => '</div>',
     19                'before_title' => '<h2 class="widgettitle">',
     20                'after_title' => '</h2>'
     21        )
    2222);
    2323
    2424register_sidebars( 1,
    25         array( 
     25        array(
    2626                'name' => 'third-section',
    2727                'before_widget' => '<div id="%1$s" class="widget %2$s">',
    28         'after_widget' => '</div>',
    29         'before_title' => '<h2 class="widgettitle">',
    30         'after_title' => '</h2>'
    31         ) 
     28                'after_widget' => '</div>',
     29                'before_title' => '<h2 class="widgettitle">',
     30                'after_title' => '</h2>'
     31        )
    3232);
    3333
    3434register_sidebars( 1,
    35         array( 
     35        array(
    3636                'name' => 'blog-sidebar',
    3737                'before_widget' => '<div id="%1$s" class="widget %2$s">',
    38         'after_widget' => '</div>',
    39         'before_title' => '<h2 class="widgettitle">',
    40         'after_title' => '</h2>'
    41         ) 
     38                'after_widget' => '</div>',
     39                'before_title' => '<h2 class="widgettitle">',
     40                'after_title' => '</h2>'
     41        )
    4242);
    4343
    4444/* Load the AJAX functions for the theme */
     
    5151/* Make sure the blog index page shows under /[HOME_BLOG_SLUG] if enabled */
    5252function bp_dtheme_show_home_blog() {
    5353        global $bp, $query_string, $paged;
    54        
    55         if ( $bp->current_component == BP_HOME_BLOG_SLUG && ( !$bp->current_action || 'page' == $bp->current_action ) ) {                               
     54
     55        if ( $bp->current_component == BP_HOME_BLOG_SLUG && ( !$bp->current_action || 'page' == $bp->current_action ) ) {
    5656                unset( $query_string );
    57                
     57
    5858                if ( ( 'page' == $bp->current_action && $bp->action_variables[0] ) && false === strpos( $query_string, 'paged' ) ) {
    5959                        $query_string .= '&paged=' . $bp->action_variables[0];
    6060                        $paged = $bp->action_variables[0];
    6161                }
    6262
    63                 query_posts($query_string);
    64                
     63                query_posts( $query_string );
     64
    6565                bp_core_load_template( 'index', true );
    6666        }
    6767}
  • bp-themes/bp-sn-parent/header.php

     
    11<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    22
    3 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
     3<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes() ?>>
    44
    55        <head profile="http://gmpg.org/xfn/11">
    66
    7                 <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
     7                <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ) ?>; charset=<?php bloginfo( 'charset' ) ?>" />
    88
    99                <title><?php bp_page_title() ?></title>
    1010
    1111                <?php do_action( 'bp_head' ) ?>
    1212
    13                 <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
     13                <meta name="generator" content="WordPress <?php bloginfo( 'version' ) ?>" /><!-- leave this for stats -->
    1414
    15                 <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
     15                <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ) ?>" type="text/css" media="screen" />
    1616
    1717                <?php if ( function_exists( 'bp_sitewide_activity_feed_link' ) ) : ?>
    18                         <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> <?php _e('Site Wide Activity RSS Feed', 'buddypress' ) ?>" href="<?php bp_sitewide_activity_feed_link() ?>" />
    19                 <?php endif; ?>
     18                        <link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ) ?> <?php _e( 'Site Wide Activity RSS Feed', 'buddypress' ) ?>" href="<?php bp_sitewide_activity_feed_link() ?>" />
     19                <?php endif ?>
    2020
    21                 <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> <?php _e( 'Blog Posts RSS Feed', 'buddypress' ) ?>" href="<?php bloginfo('rss2_url'); ?>" />
    22                 <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> <?php _e( 'Blog Posts Atom Feed', 'buddypress' ) ?>" href="<?php bloginfo('atom_url'); ?>" />
     21                <link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ) ?> <?php _e( 'Blog Posts RSS Feed', 'buddypress' ) ?>" href="<?php bloginfo( 'rss2_url' ) ?>" />
    2322
    24                 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
     23                <link rel="alternate" type="application/atom+xml" title="<?php bloginfo( 'name' ) ?> <?php _e( 'Blog Posts Atom Feed', 'buddypress' ) ?>" href="<?php bloginfo( 'atom_url' ) ?>" />
    2524
    26                 <?php wp_head(); ?>
     25                <link rel="pingback" href="<?php bloginfo( 'pingback_url' ) ?>" />
    2726
     27                <?php wp_head() ?>
     28
    2829        </head>
    2930
    3031        <body <?php body_class() ?>>
    31                
    32                 <?php do_action( 'bp_before_search_login_bar' ) ?>     
    33                
     32
     33                <?php do_action( 'bp_before_search_login_bar' ) ?>
     34
    3435                <div id="search-login-bar">
    35        
     36
    3637                        <form action="<?php echo bp_search_form_action() ?>" method="post" id="search-form">
    37                                 <input type="text" id="search-terms" name="search-terms" value="" />
     38
     39                                <input type="text" id="search-terms" name="search-terms" value="" />
     40
    3841                                <?php echo bp_search_form_type_select() ?>
    3942       
    4043                                <input type="submit" name="search-submit" id="search-submit" value="<?php _e( 'Search', 'buddypress' ) ?>" />
     44
    4145                                <?php wp_nonce_field( 'bp_search_form' ) ?>
     46
    4247                        </form>
    43                        
     48
    4449                        <?php if ( !is_user_logged_in() ) : ?>
    45                
     50
    4651                                <form name="login-form" id="login-form" action="<?php echo site_url( 'wp-login.php' ) ?>" method="post">
     52
    4753                                        <input type="text" name="log" id="user_login" value="<?php _e( 'Username', 'buddypress' ) ?>" onfocus="if (this.value == '<?php _e( 'Username', 'buddypress' ) ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e( 'Username', 'buddypress' ) ?>';}" />
     54
    4855                                        <input type="password" name="pwd" id="user_pass" class="input" value="" />
    49                        
     56
    5057                                        <input type="checkbox" name="rememberme" id="rememberme" value="forever" title="<?php _e( 'Remember Me', 'buddypress' ) ?>" />
    51                        
    52                                         <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e( 'Log In', 'buddypress' ) ?>"/>           
    53                                        
    54                                         <?php if ( 'none' != bp_get_signup_allowed() && 'blog' != bp_get_signup_allowed() ) : ?>               
     58
     59                                        <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e( 'Log In', 'buddypress' ) ?>"/>
     60
     61                                        <?php if ( 'none' != bp_get_signup_allowed() && 'blog' != bp_get_signup_allowed() ) : ?>
    5562                                                <input type="button" name="signup-submit" id="signup-submit" value="<?php _e( 'Sign Up', 'buddypress' ) ?>" onclick="location.href='<?php echo bp_signup_page() ?>'" />
    56                                         <?php endif; ?>
    57                                        
     63                                        <?php endif ?>
     64
    5865                                        <input type="hidden" name="redirect_to" value="<?php echo bp_root_domain() ?>" />
     66
    5967                                        <input type="hidden" name="testcookie" value="1" />
    60                                                
     68
    6169                                        <?php do_action( 'bp_login_bar_logged_out' ) ?>
     70
    6271                                </form>
    63        
     72
    6473                        <?php else : ?>
    65                
     74
    6675                                <div id="logout-link">
    67                                         <?php bp_loggedin_user_avatar( 'width=20&height=20' ) ?> &nbsp; <?php bp_loggedinuser_link() ?> / <?php bp_log_out_link() ?>
    68                                        
     76
     77                                        <?php bp_loggedin_user_avatar( 'width=20&height=20' ) ?> &nbsp;
     78
     79                                        <?php bp_loggedinuser_link() ?>
     80
     81                                        <?php _e( '/', 'buddypress' ) ?>
     82
     83                                        <?php bp_log_out_link() ?>
     84
    6985                                        <?php do_action( 'bp_login_bar_logged_in' ) ?>
     86
    7087                                </div>
    71                
    72                         <?php endif; ?>
    73                        
     88
     89                        <?php endif ?>
     90
    7491                        <?php do_action( 'bp_search_login_bar' ) ?>
    7592
    7693                </div>
    7794
    78                 <?php do_action( 'bp_after_search_login_bar' ) ?>                       
    79                 <?php do_action( 'bp_before_header' ) ?>               
     95                <?php do_action( 'bp_after_search_login_bar' ) ?>
     96                <?php do_action( 'bp_before_header' ) ?>
    8097
    81                 <div id="header">       
    82                
    83                         <h1 id="logo"><a href="<?php echo get_option('home') ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php bp_site_name() ?></a></h1>
    84        
     98                <div id="header">
     99
     100                        <h1 id="logo"><a href="<?php echo get_option( 'home' ) ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php bp_site_name() ?></a></h1>
     101
    85102                        <ul id="nav">
    86                                 <li<?php if ( bp_is_page( 'home' ) ) : ?> class="selected"<?php endif; ?>><a href="<?php echo get_option('home') ?>" title="<?php _e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a></li>
    87                                 <li<?php if ( bp_is_page( BP_HOME_BLOG_SLUG ) ) : ?> class="selected"<?php endif; ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_HOME_BLOG_SLUG ?>" title="<?php _e( 'Blog', 'buddypress' ) ?>"><?php _e( 'Blog', 'buddypress' ) ?></a></li>
    88                                 <li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) : ?> class="selected"<?php endif; ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_MEMBERS_SLUG ?>" title="<?php _e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a></li>
    89103
     104                                <li<?php if ( bp_is_page( 'home' ) ) echo ' class="selected"' ?>><a href="<?php echo get_option( 'home' ) ?>" title="<?php esc_attr_e( 'Home', 'buddypress' ) ?>"><?php _e( 'Home', 'buddypress' ) ?></a></li>
     105
     106                                <li<?php if ( bp_is_page( BP_HOME_BLOG_SLUG ) ) echo ' class="selected"' ?>><a href="<?php echo get_option( 'home' ) ?>/<?php echo BP_HOME_BLOG_SLUG ?>" title="<?php esc_attr_e( 'Blog', 'buddypress' ) ?>"><?php _e( 'Blog', 'buddypress' ) ?></a></li>
     107
     108                                <li<?php if ( bp_is_page( BP_MEMBERS_SLUG ) ) echo ' class="selected"' ?>><a href="<?php echo get_option( 'home' ) ?>/<?php echo BP_MEMBERS_SLUG ?>" title="<?php esc_attr_e( 'Members', 'buddypress' ) ?>"><?php _e( 'Members', 'buddypress' ) ?></a></li>
     109
    90110                                <?php if ( function_exists( 'groups_install' ) ) : ?>
    91                                         <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) : ?> class="selected"<?php endif; ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_GROUPS_SLUG ?>" title="<?php _e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a></li>
    92                                 <?php endif; ?>
     111                                        <li<?php if ( bp_is_page( BP_GROUPS_SLUG ) ) echo ' class="selected"' ?>><a href="<?php echo get_option( 'home' ) ?>/<?php echo BP_GROUPS_SLUG ?>" title="<?php esc_attr_e( 'Groups', 'buddypress' ) ?>"><?php _e( 'Groups', 'buddypress' ) ?></a></li>
     112                                <?php endif ?>
    93113
    94114                                <?php if ( function_exists( 'groups_install' ) && ( function_exists( 'bp_forums_setup' ) && !(int) get_site_option( 'bp-disable-forum-directory' ) ) ) : ?>
    95                                         <li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) : ?> class="selected"<?php endif; ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_FORUMS_SLUG ?>" title="<?php _e( 'Forums', 'buddypress' ) ?>"><?php _e( 'Forums', 'buddypress' ) ?></a></li>
    96                                 <?php endif; ?>
    97                                
     115                                        <li<?php if ( bp_is_page( BP_FORUMS_SLUG ) ) echo ' class="selected"' ?>><a href="<?php echo get_option( 'home' ) ?>/<?php echo BP_FORUMS_SLUG ?>" title="<?php esc_attr_e( 'Forums', 'buddypress' ) ?>"><?php _e( 'Forums', 'buddypress' ) ?></a></li>
     116                                <?php endif ?>
     117
    98118                                <?php if ( function_exists( 'bp_blogs_install' ) ) : ?>
    99                                         <li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) : ?> class="selected"<?php endif; ?>><a href="<?php echo get_option('home') ?>/<?php echo BP_BLOGS_SLUG ?>" title="<?php _e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a></li>
    100                                 <?php endif; ?>
     119                                        <li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) echo ' class="selected"' ?>><a href="<?php echo get_option( 'home' ) ?>/<?php echo BP_BLOGS_SLUG ?>" title="<?php esc_attr_e( 'Blogs', 'buddypress' ) ?>"><?php _e( 'Blogs', 'buddypress' ) ?></a></li>
     120                                <?php endif ?>
    101121
    102                                 <?php do_action( 'bp_nav_items' ); ?>
     122                                <?php do_action( 'bp_nav_items' ) ?>
     123
    103124                        </ul>
    104125
    105126                        <?php do_action( 'bp_header' ) ?>
    106        
     127
    107128                </div>
    108129
    109130                <?php do_action( 'bp_after_header' ) ?>
    110131                <?php do_action( 'bp_before_container' ) ?>
    111                
     132
    112133                <div id="container">
    113        
     134
    114135                        <?php if ( !bp_is_blog_page() && !bp_is_directory() && !bp_is_register_page() && !bp_is_activation_page() ) : ?>
    115                
     136
    116137                                <?php locate_template( array( 'userbar.php' ), true ) /* Load the user navigation */ ?>
     138
    117139                                <?php locate_template( array( 'optionsbar.php' ), true ) /* Load the currently displayed object navigation */ ?>
    118                
    119                         <?php endif; ?>
    120                        
    121  No newline at end of file
     140
     141                        <?php endif ?>
     142 No newline at end of file
  • bp-themes/bp-sn-parent/home.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content">
    44
    55                <?php do_action( 'bp_before_home' ) ?>
    66
    77                <div id="third-section" class="widget-section">
     8
    89                        <?php if ( !function_exists('dynamic_sidebar')
    9                                 || !dynamic_sidebar('third-section') ) : ?>
    10                
     10                                || !dynamic_sidebar('third-section') ) : ?>
     11
    1112                        <div class="widget-error">
    12                                 <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=first-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
     13
     14                                <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?>
     15
     16                                <a href="<?php echo get_option( 'siteurl' ) ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=first-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
     17
    1318                        </div>
    14                
    15                         <?php endif; ?>
     19
     20                        <?php endif ?>
     21
    1622                </div>
    17                
     23
    1824                <div id="second-section" class="widget-section">
     25
    1926                        <?php if ( !function_exists('dynamic_sidebar')
    20                                 || !dynamic_sidebar('second-section') ) : ?>
    21                
     27                                || !dynamic_sidebar('second-section') ) : ?>
     28
    2229                        <div class="widget-error">
    23                                 <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=second-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
     30
     31                                <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?>
     32
     33                                <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=second-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
     34
    2435                        </div>
    25                
    26                         <?php endif; ?>
     36
     37                        <?php endif ?>
     38
    2739                </div>
    2840
    2941                <div id="first-section" class="widget-section">
     42
    3043                        <?php if ( !function_exists('dynamic_sidebar')
    31                                 || !dynamic_sidebar('first-section') ) : ?>
     44                                || !dynamic_sidebar('first-section') ) : ?>
    3245
    3346                        <div class="widget-error">
    34                                 <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?> <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=third-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
    35                         </div>         
    36                
    37                         <?php endif; ?>
     47
     48                                <?php _e( 'Please log in and add widgets to this section.', 'buddypress' ) ?>
     49
     50                                <a href="<?php echo get_option('siteurl') ?>/wp-admin/widgets.php?s=&amp;show=&amp;sidebar=third-section"><?php _e( 'Add Widgets', 'buddypress' ) ?></a>
     51
     52                        </div>
     53
     54                        <?php endif ?>
     55
    3856                </div>
    3957
    4058                <?php do_action( 'bp_after_home' ) ?>
    4159
    4260        </div>
    4361
    44 <?php get_footer(); ?>
     62<?php get_footer() ?>
     63 No newline at end of file
  • bp-themes/bp-sn-parent/index.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content">
    44
    55                <?php do_action( 'bp_before_blog_home' ) ?>
    66
    77                <div class="page" id="blog-latest">
    8                
     8
    99                        <h2 class="pagetitle"><?php _e( 'Blog', 'buddypress' ) ?></h2>
    10                
    11                         <?php if ( have_posts() ) : ?>
    1210
    13                                 <?php while (have_posts()) : the_post(); ?>
    14                                
     11                        <?php if ( have_posts() ) : while ( have_posts() ) : the_post() ?>
     12
    1513                                        <?php do_action( 'bp_before_blog_post' ) ?>
    16                                
    17                                         <div class="post" id="post-<?php the_ID(); ?>">
    18                                        
    19                                                 <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    20                                        
    21                                                 <p class="date"><?php the_time('F j, Y') ?> <em><?php _e( 'in', 'buddypress' ) ?> <?php the_category(', ') ?> <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink($post->post_author) ) ?></em></p>
    2214
     15                                        <div <?php post_class( $i++ & 1 ? '' : 'alt' ) ?> id="post-<?php the_ID() ?>">
     16
     17                                                <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf( esc_attr__( 'Permanent Link to %s', 'buddypress' ), get_the_title() ) ?>"><?php the_title() ?></a></h3>
     18
     19                                                <p class="date"><?php the_time('F j, Y') ?>
     20
     21                                                        <em><?php printf( __( 'in %s', 'buddypress' ), get_the_category_list(',') ) ?>
     22
     23                                                                <?php printf( __( 'by %s', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></em></p>
     24
    2325                                                <div class="entry">
    24                                                         <?php the_content( __( 'Read the rest of this entry &raquo;', 'buddypress' ) ); ?>
     26
     27                                                        <?php the_content( __( 'Read the rest of this entry &raquo;', 'buddypress' ) ) ?>
     28
    2529                                                </div>
    2630
    27                                                 <p class="postmetadata"><span class="tags"><?php the_tags( __( 'Tags: ', 'buddypress' ), ', ', '<br />'); ?></span> <span class="comments"><?php comments_popup_link( __( 'No Comments &#187;', 'buddypress' ), __( '1 Comment &#187;', 'buddypress' ), __( '% Comments &#187;', 'buddypress' ) ); ?></span></p>
     31                                                <p class="postmetadata"><span class="tags"><?php the_tags( __( 'Tags: ', 'buddypress' ), ', ', '<br />') ?></span>
    2832
     33                                                        <span class="comments"><?php comments_popup_link(
     34                                                                __( 'No Comments &#187;', 'buddypress' ),
     35                                                                __( '1 Comment &#187;', 'buddypress' ),
     36                                                                __( '% Comments &#187;', 'buddypress' )
     37                                                        ) ?></span></p>
     38
    2939                                        </div>
    3040
    3141                                        <?php do_action( 'bp_after_blog_post' ) ?>
    3242
    33                                 <?php endwhile; ?>
     43                                <?php endwhile ?>
    3444
    3545                                <div class="navigation">
    36                                
     46
    3747                                        <div class="alignleft"><?php next_posts_link( __( '&laquo; Previous Entries', 'buddypress' ) ) ?></div>
    3848                                        <div class="alignright"><?php previous_posts_link( __( 'Next Entries &raquo;', 'buddypress' ) ) ?></div>
    39                                
     49
    4050                                </div>
    4151
    4252                        <?php else : ?>
    4353
    4454                                <h2 class="center"><?php _e( 'Not Found', 'buddypress' ) ?></h2>
    45                                 <p class="center"><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'buddypress' ) ?></p>
    4655
     56                                <p class="center"><?php _e( "Sorry, but you are looking for something that isn't here.", 'buddypress' ) ?></p>
     57
    4758                                <?php locate_template( array( 'searchform.php' ), true ) ?>
    4859
    49                         <?php endif; ?>
     60                        <?php endif ?>
     61
    5062                </div>
    5163
    5264                <?php do_action( 'bp_after_blog_home' ) ?>
    5365
    5466        </div>
    5567
    56         <?php get_sidebar(); ?>
     68        <?php get_sidebar() ?>
    5769
    58 <?php get_footer(); ?>
     70<?php get_footer() ?>
     71 No newline at end of file
  • bp-themes/bp-sn-parent/links.php

     
    44*/
    55?>
    66
    7 <?php get_header(); ?>
     7<?php get_header() ?>
    88
    99        <div id="content">
    1010
    1111                <?php do_action( 'bp_before_blog_links' ) ?>
    1212
    13                 <div class="page" id="blog-latest">
    14                
     13                <div <?php post_class() ?> id="blog-latest">
     14
    1515                        <h2 class="pagetitle"><?php _e( 'Links', 'buddypress' ) ?></h2>
    1616
    1717                        <ul id="links-list">
    18                                 <?php get_links_list(); ?>
     18
     19                                <?php get_links_list() ?>
     20
    1921                        </ul>
    20                
     22
    2123                </div>
    2224
    2325                <?php do_action( 'bp_after_blog_links' ) ?>
    2426
    2527        </div>
    2628
    27 <?php get_footer(); ?>
     29<?php get_footer() ?>
     30 No newline at end of file
  • bp-themes/bp-sn-parent/messages/compose.php

     
    11<?php get_header() ?>
    22
    3         <div class="content-header">
     3        <div class="content-header"><!-- --></div>
    44
    5         </div>
     5        <div id="content">
    66
    7         <div id="content">
    8                 <h2><?php _e( 'Compose Message', 'buddypress' ); ?></h2>
    9        
     7                <h2><?php _e( 'Compose Message', 'buddypress' ) ?></h2>
     8
    109                <?php do_action( 'template_notices' ) ?>
    11                
     10
    1211                <form action="<?php bp_messages_form_action('compose') ?>" method="post" id="send_message_form" class="standard-form">
    1312
    1413                        <?php do_action( 'bp_before_messages_compose_content' ) ?>
    15                        
    16                         <label for="send-to-input"><?php _e("Send To", 'buddypress') ?> &nbsp; <span class="ajax-loader"></span></label>
     14
     15                        <label for="send-to-input"><?php _e( 'Send To', 'buddypress') ?> &nbsp; <span class="ajax-loader"></span></label>
     16
    1717                        <ul class="first acfb-holder">
     18
    1819                                <li>
     20
    1921                                        <?php bp_message_get_recipient_tabs() ?>
     22
    2023                                        <input type="text" name="send-to-input" class="send-to-input" id="send-to-input" />
     24
    2125                                </li>
     26
    2227                        </ul>
    23                
     28
    2429                        <?php if ( is_site_admin() ) : ?>
    25                                 <input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( "This is a notice to all users.", "buddypress" ) ?>
    26                         <?php endif; ?>
    2730
     31                                <input type="checkbox" id="send-notice" name="send-notice" value="1" /> <?php _e( 'This is a notice to all users.', 'buddypress' ) ?>
     32
     33                        <?php endif ?>
     34
    2835                        <label for="subject"><?php _e( 'Subject', 'buddypress') ?></label>
     36
    2937                        <input type="text" name="subject" id="subject" value="<?php bp_messages_subject_value() ?>" />
    3038
    3139                        <label for="content"><?php _e( 'Message', 'buddypress') ?></label>
     40
    3241                        <textarea name="content" id="message_content" rows="15" cols="40"><?php bp_messages_content_value() ?></textarea>
    3342
    34                         <input type="hidden" name="send_to_usernames" id="send-to-usernames" value="<?php bp_message_get_recipient_usernames(); ?>" class="<?php bp_message_get_recipient_usernames() ?>" />
    35                
     43                        <input type="hidden" name="send_to_usernames" id="send-to-usernames" value="<?php bp_message_get_recipient_usernames() ?>" class="<?php bp_message_get_recipient_usernames() ?>" />
     44
    3645                        <?php do_action( 'bp_after_messages_compose_content' ) ?>
    3746
    38                         <p class="submit">
    39                                 <input type="submit" value="<?php _e("Send", 'buddypress') ?> &raquo;" name="send" id="send" />
    40                         </p>
    41                
     47                        <p class="submit"><input type="submit" value="<?php esc_attr_e( 'Send &raquo;', 'buddypress' ) ?>" name="send" id="send" /></p>
     48
    4249                        <?php wp_nonce_field( 'messages_send_message' ) ?>
     50
    4351                </form>
    44        
     52
    4553                <script type="text/javascript">
    46                         document.getElementById("send-to-input").focus();
     54                        document.getElementById( 'send-to-input' ).focus();
    4755                </script>
     56
    4857        </div>
    4958
    50 <?php get_footer() ?>
    51 
     59<?php get_footer() ?>
     60 No newline at end of file
  • bp-themes/bp-sn-parent/messages/index.php

     
    33        <form action="<?php bp_messages_form_action() ?>" method="post" id="messages-form">
    44
    55                <div class="content-header">
    6                         <div class="messages-options"> 
     6
     7                        <div class="messages-options">
     8
    79                                <?php bp_messages_options() ?>
     10
    811                        </div>
     12
    913                </div>
    1014
    1115                <div id="content">
    12                         <h2><?php _e( "Inbox", "buddypress" ); ?></h2>
    13                        
     16
     17                        <h2><?php _e( 'Inbox', 'buddypress' ) ?></h2>
     18
    1419                        <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    1520
    1621                        <?php do_action( 'bp_before_messages_inbox_content' ) ?>
    17        
    18                         <?php bp_message_get_notices(); // (admin created site wide notices) ?>
    1922
     23                        <?php bp_message_get_notices() // (admin created site wide notices) ?>
     24
    2025                        <?php if ( bp_has_message_threads() ) : ?>
    21                                
     26
    2227                                <div class="pagination">
    2328
    2429                                        <div class="pagination-links">
     30
    2531                                                <?php bp_messages_pagination() ?>
     32
    2633                                        </div>
    2734
    2835                                </div>
    29                                
     36
    3037                                <?php do_action( 'bp_before_messages_inbox_list' ) ?>
    31        
     38
    3239                                <table id="message-threads">
    33                                         <?php while ( bp_message_threads() ) : bp_message_thread(); ?>
    34                                        
    35                                                 <tr id="m-<?php bp_message_thread_id() ?>"<?php if ( bp_message_thread_has_unread() ) : ?> class="unread"<?php else: ?> class="read"<?php endif; ?>>
     40
     41                                        <?php while ( bp_message_threads() ) : bp_message_thread() ?>
     42
     43                                                <tr id="m-<?php bp_message_thread_id() ?>" class="<?php echo ( $i++ & 1 ? '' : 'alt ' );
     44                                                        if ( bp_message_thread_has_unread() )
     45                                                                echo 'unread';
     46                                                        else
     47                                                                echo 'read' ?>">
     48
    3649                                                        <td width="1%">
     50
    3751                                                                <span class="unread-count"><?php bp_message_thread_unread_count() ?></span>
     52
    3853                                                        </td>
    39                                                         <td width="1%"><?php bp_message_thread_avatar() ?></td>
     54
     55                                                        <td width="1%">
     56
     57                                                                <?php bp_message_thread_avatar() ?>
     58
     59                                                        </td>
     60
    4061                                                        <td width="27%">
    41                                                                 <p><?php _e("From:", "buddypress"); ?> <?php bp_message_thread_from() ?></p>
     62
     63                                                                <p><?php printf( __( 'From: %s', 'buddypress' ), bp_get_message_thread_from() ) ?></p>
     64
    4265                                                                <p class="date"><?php bp_message_thread_last_post_date() ?></p>
     66
    4367                                                        </td>
     68
    4469                                                        <td width="40%">
    45                                                                 <p><a href="<?php bp_message_thread_view_link() ?>" title="<?php _e("View Message", "buddypress"); ?>"><?php bp_message_thread_subject() ?></a></p>
     70
     71                                                                <p><a href="<?php bp_message_thread_view_link() ?>" title="<?php esc_attr_e( 'View Message', 'buddypress' ) ?>"><?php bp_message_thread_subject() ?></a></p>
     72
    4673                                                                <p><?php bp_message_thread_excerpt() ?></p>
     74
    4775                                                        </td>
    48                                                        
     76
    4977                                                        <?php do_action( 'bp_messages_inbox_list_item' ) ?>
    50                                                        
     78
    5179                                                        <td width="10%">
    52                                                                 <a href="<?php bp_message_thread_delete_link() ?>" title="<?php _e("Delete Message", "buddypress"); ?>" class="delete confirm"><?php _e("Delete", "buddypress"); ?></a> &nbsp;
     80
     81                                                                <a href="<?php bp_message_thread_delete_link() ?>" title="<?php esc_attr_e( 'Delete Message', 'buddypress' ) ?>" class="delete confirm"><?php _e( 'Delete', 'buddypress' ) ?></a> &nbsp;
     82
    5383                                                                <input type="checkbox" name="message_ids[]" value="<?php bp_message_thread_id() ?>" />
     84
    5485                                                        </td>
     86
    5587                                                </tr>
    56                                        
    57                                         <?php endwhile; ?>
     88
     89                                        <?php endwhile ?>
     90
    5891                                </table>
    5992
    6093                                <?php do_action( 'bp_after_messages_inbox_list' ) ?>
    61                
    62                         <?php else: ?>
    63                
     94
     95                        <?php else : ?>
     96
    6497                                <div id="message" class="info">
    65                                         <p><?php _e( 'You have no messages in your inbox.', 'buddypress' ); ?></p>
    66                                 </div> 
    67                
    68                         <?php endif;?>
    6998
     99                                        <p><?php _e( 'You have no messages in your inbox.', 'buddypress' ) ?></p>
     100
     101                                </div>
     102
     103                        <?php endif ?>
     104
    70105                        <?php do_action( 'bp_after_messages_inbox_content' ) ?>
    71106
    72107                </div>
  • bp-themes/bp-sn-parent/messages/notices.php

     
    11<?php get_header() ?>
    22
    3         <div class="content-header">
     3        <div class="content-header"><!-- --></div>
    44
    5         </div>
     5        <div id="content">
    66
    7         <div id="content">
    8                
    97                <div class="pagination">
    10                
     8
    119                        <div class="pagination-links">
     10
    1211                                <?php bp_messages_pagination() ?>
     12
    1313                        </div>
    14                
     14
    1515                </div>
    16        
    17                 <h2><?php _e( 'Sent Notices', 'buddypress' ); ?></h2>
    18        
     16
     17                <h2><?php _e( 'Sent Notices', 'buddypress' ) ?></h2>
     18
    1919                <?php do_action( 'template_notices' ) ?>
    2020
    2121                <?php do_action( 'bp_before_messages_notices_content' ) ?>
     
    2323                <?php if ( bp_has_message_threads() ) : ?>
    2424
    2525                        <?php do_action( 'bp_before_messages_notices_list' ) ?>
    26                
     26
    2727                        <table id="message-threads" class="notices">
    28                                 <?php while ( bp_message_threads() ) : bp_message_thread(); ?>
    2928
     29                                <?php while ( bp_message_threads() ) : bp_message_thread() ?>
     30
    3031                                        <tr>
    31                                                 <td width="1%">
    32                                                 </td>
     32
     33                                                <td width="1%"><!-- --></td>
     34
    3335                                                <td width="40%">
     36
    3437                                                        <p><strong><?php bp_message_notice_subject() ?></strong></p>
     38
    3539                                                        <p><?php bp_message_notice_text() ?></p>
     40
    3641                                                </td>
     42
    3743                                                <td width="27%">
     44
    3845                                                        <p><?php bp_message_is_active_notice() ?></p>
    39                                                         <p class="date"><?php _e("Sent:", "buddypress"); ?> <?php bp_message_notice_post_date() ?></p>
     46
     47                                                        <p class="date"><?php printf( __('Sent: %s', 'buddypress'), bp_get_message_notice_post_date() ) ?></p>
     48
    4049                                                </td>
    41                                                        
     50
    4251                                                <?php do_action( 'bp_messages_notices_list_item' ) ?>
    4352
    4453                                                <td width="4%">
    45                                                         <a href="<?php bp_message_activate_deactivate_link() ?>" class="confirm"><?php bp_message_activate_deactivate_text() ?></a>
    46                                                         <a href="<?php bp_message_notice_delete_link() ?>" class="confirm" title="<?php _e("Delete Message", "buddypress"); ?>"><?php _e("Delete", "buddypress"); ?></a>
     54
     55                                                        <a href="<?php bp_message_activate_deactivate_link() ?>" class="confirm"><?php bp_message_activate_deactivate_text() ?></a>
     56
     57                                                        <a href="<?php bp_message_notice_delete_link() ?>" class="confirm" title="<?php esc_attr_e( 'Delete Message', 'buddypress' ) ?>"><?php _e( 'Delete', 'buddypress' ) ?></a>
     58
    4759                                                </td>
     60
    4861                                        </tr>
    49                                        
    50                                 <?php endwhile; ?>
     62
     63                                <?php endwhile ?>
     64
    5165                        </table>
    5266
    5367                        <?php do_action( 'bp_after_messages_notices_list' ) ?>
    5468               
    55                 <?php else: ?>
    56                
     69                <?php else : ?>
     70
    5771                        <div id="message" class="info">
    58                                 <p><?php _e("You have not sent any notices.", "buddypress"); ?></p>
     72
     73                                <p><?php _e( 'You have not sent any notices.', 'buddypress' ) ?></p>
     74
    5975                        </div> 
    6076
    61                 <?php endif; ?>
     77                <?php endif ?>
    6278
    6379                <?php do_action( 'bp_after_messages_notices_content' ) ?>
    6480
  • bp-themes/bp-sn-parent/messages/sentbox.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
    4                 <div class="messages-options"> 
     4                <div class="messages-options">
    55                        <?php bp_messages_options() ?>
    66                </div>
    77        </div>
    88
    9         <div id="content">     
    10                 <h2><?php _e("Sent Messages", "buddypress"); ?></h2>
    11        
     9        <div id="content">
     10                <h2><?php _e( 'Sent Messages', 'buddypress' ) ?></h2>
     11
    1212                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    1313
    1414                <?php do_action( 'bp_before_messages_sentbox_content' ) ?>
    1515
    1616                <?php if ( bp_has_message_threads() ) : ?>
    17                        
     17
    1818                        <div class="pagination">
    1919
    2020                                <div class="pagination-links">
     21
    2122                                        <?php bp_messages_pagination() ?>
     23
    2224                                </div>
    23                        
     25
    2426                        </div>
    2527
    2628                        <?php do_action( 'bp_before_messages_sentbox_list' ) ?>
    27                                
     29
    2830                        <table id="message-threads">
    29                                 <?php while ( bp_message_threads() ) : bp_message_thread(); ?>
    30                                
    31                                         <tr id="m-<?php bp_message_thread_id() ?>">
     31
     32                                <?php while ( bp_message_threads() ) : bp_message_thread() ?>
     33
     34                                        <tr<?php echo ( $i++ & 1 ? '' : ' class="alt"' ) ?> id="m-<?php bp_message_thread_id() ?>">
     35
     36                                                <td width="1%"><!-- --></td>
     37
    3238                                                <td width="1%">
     39
     40                                                        <?php bp_message_thread_avatar() ?>
     41
    3342                                                </td>
    34                                                 <td width="1%"><?php bp_message_thread_avatar() ?></td>
     43
    3544                                                <td width="27%">
    36                                                         <p><?php _e("To:", "buddypress"); ?> <?php bp_message_thread_to() ?></p>
     45
     46                                                        <p><?php printf( __( 'To: %s', 'buddypress' ), bp_get_message_thread_to() ) ?></p>
     47
    3748                                                        <p class="date"><?php bp_message_thread_last_post_date() ?></p>
     49
    3850                                                </td>
     51
    3952                                                <td width="40%">
    40                                                         <p><a href="<?php bp_message_thread_view_link() ?>" title="<?php _e("View Message", "buddypress"); ?>"><?php bp_message_thread_subject() ?></a></p>
     53
     54                                                        <p><a href="<?php bp_message_thread_view_link() ?>" title="<?php esc_attr_e( 'View Message', 'buddypress' ) ?>"><?php bp_message_thread_subject() ?></a></p>
     55
    4156                                                        <p><?php bp_message_thread_excerpt() ?></p>
     57
    4258                                                </td>
    4359
    4460                                                <?php do_action( 'bp_messages_sentbox_list' ) ?>
    4561
    4662                                                <td width="10%">
    47                                                         <a href="<?php bp_message_thread_delete_link() ?>" title="<?php _e("Delete Message", "buddypress"); ?>" class="delete confirm"><?php _e("Delete", "buddypress"); ?></a> &nbsp; 
     63
     64                                                        <a href="<?php bp_message_thread_delete_link() ?>" title="<?php esc_attr_e( 'Delete Message', 'buddypress' ) ?>" class="delete confirm"><?php _e( 'Delete', 'buddypress' ) ?></a> &nbsp;
     65
    4866                                                        <input type="checkbox" name="message_ids[]" value="<?php bp_message_thread_id() ?>" />
     67
    4968                                                </td>
     69
    5070                                        </tr>
    51                                
    52                                 <?php endwhile; ?>
     71
     72                                <?php endwhile ?>
     73
    5374                        </table>
    54                
     75
    5576                        <?php do_action( 'bp_after_messages_sentbox_list' ) ?>
    56                        
    57                 <?php else: ?>
    58                
     77
     78                <?php else : ?>
     79
    5980                        <div id="message" class="info">
    60                                 <p><?php _e("You have no sent messages.", "buddypress"); ?></p>
    61                         </div> 
    6281
    63                 <?php endif;?>
     82                                <p><?php _e( 'You have no sent messages.', 'buddypress' ) ?></p>
    6483
     84                        </div>
     85
     86                <?php endif ?>
     87
    6588                <?php do_action( 'bp_after_messages_sentbox_content' ) ?>
    66                
     89
    6790        </div>
    6891
    6992<?php get_footer() ?>
     93 No newline at end of file
  • bp-themes/bp-sn-parent/messages/view.php

     
    11<?php get_header() ?>
    22
    3         <div class="content-header">
    4        
    5         </div>
     3        <div class="content-header"><!-- --></div>
    64
    75        <div id="content">
    8        
     6
    97                <?php do_action( 'template_notices' ) ?>
    108
    119                <?php do_action( 'bp_before_message_thread_content' ) ?>
    12        
     10
    1311                <?php if ( bp_thread_has_messages() ) : ?>
    14                        
     12
    1513                        <h2 id="message-subject"><?php bp_the_thread_subject() ?></h2>
    16                        
    17                         <p id="message-recipients">
    18                                 <?php printf( __('Sent between %s and %s', 'buddypress'), bp_get_the_thread_recipients(), '<a href="' . bp_get_loggedin_user_link() . '" title="' . bp_get_loggedin_user_fullname() . '">' . bp_get_loggedin_user_fullname() . '</a>' ) ?>
    19                         </p>
    20                        
     14
     15                        <p id="message-recipients"><?php printf( __('Sent between %s and %s', 'buddypress'), bp_get_the_thread_recipients(), '<a href="' . bp_get_loggedin_user_link() . '" title="' . bp_get_loggedin_user_fullname() . '">' . bp_get_loggedin_user_fullname() . '</a>' ) ?></p>
     16
    2117                        <?php do_action( 'bp_before_message_thread_list' ) ?>
    22                        
    23                         <?php while ( bp_thread_messages() ) : bp_thread_the_message(); ?>
    24                                
     18
     19                        <?php while ( bp_thread_messages() ) : bp_thread_the_message() ?>
     20
    2521                                <div class="message-box<?php bp_the_thread_message_alt_class() ?>">
    26                                        
     22
    2723                                        <div class="message-metadata">
    28                                                
     24
    2925                                                <?php do_action( 'bp_before_message_meta' ) ?>
    30                                                
     26
    3127                                                <?php bp_the_thread_message_sender_avatar( 'type=thumb&width=30&height=30' ) ?>
     28
    3229                                                <h3><a href="<?php bp_the_thread_message_sender_link() ?>" title="<?php bp_the_thread_message_sender_name() ?>"><?php bp_the_thread_message_sender_name() ?></a></h3>
    33                                                
    34                                                 <small>
    35                                                         <?php bp_the_thread_message_time_since() ?>
    36                                                 </small>
    37                                                
     30
     31                                                <small><?php bp_the_thread_message_time_since() ?></small>
     32
    3833                                                <?php do_action( 'bp_after_message_meta' ) ?>
    39                                        
     34
    4035                                        </div>
    41                                        
     36
    4237                                        <?php do_action( 'bp_before_message_content' ) ?>
    43                                        
     38
    4439                                        <div class="message-content">
    45                                                
     40
    4641                                                <?php bp_the_thread_message_content() ?>
    47                                        
     42
    4843                                        </div>
    49                                        
     44
    5045                                        <?php do_action( 'bp_after_message_content' ) ?>
    51        
     46
    5247                                        <div class="clear"></div>
    53                                        
     48
    5449                                </div>
    55                                
    56                         <?php endwhile; ?>
    57                
     50
     51                        <?php endwhile ?>
     52
    5853                        <?php do_action( 'bp_after_message_thread_list' ) ?>
    5954
    6055                        <?php do_action( 'bp_before_message_thread_reply' ) ?>
    61                
     56
    6257                        <form id="send-reply" action="<?php bp_messages_form_action() ?>" method="post" class="standard-form">
    63                
     58
    6459                                <div class="message-box">
    65                                        
     60
    6661                                        <div class="message-metadata">
    67                                                
    68                                                 <?php do_action( 'bp_before_message_meta' ) ?>                                 
    69                                                
     62
     63                                                <?php do_action( 'bp_before_message_meta' ) ?>
     64
    7065                                                <div class="avatar-box">
    71                                                         <?php echo bp_core_fetch_avatar( array( 'item_id' => bp_loggedin_user_id(), 'type' => 'thumb', 'width' => 30, 'height' => 30 ) ); ?>
    7266
     67                                                        <?php echo bp_core_fetch_avatar( array( 'item_id' => bp_loggedin_user_id(), 'type' => 'thumb', 'width' => 30, 'height' => 30 ) ) ?>
     68
    7369                                                        <h3><?php _e( 'Reply: ', 'buddypress' ) ?></h3>
     70
    7471                                                </div>
    7572
    7673                                                <?php do_action( 'bp_after_message_meta' ) ?>
    77                                                
     74
    7875                                        </div>
    79                                
     76
    8077                                        <div class="message-content">
    81                                
     78
    8279                                                <?php do_action( 'bp_before_message_reply_box' ) ?>
    83                                        
     80
    8481                                                <textarea name="content" id="message_content" rows="15" cols="40"></textarea>
    8582
    8683                                                <?php do_action( 'bp_after_message_reply_box' ) ?>
    87                                        
    88                                                 <p class="submit">
    89                                                         <input type="submit" name="send" value="<?php _e( 'Send Reply', 'buddypress' ) ?> &rarr;" id="send_reply_button"/>
    90                                                 </p>
    9184
    92                                                 <input type="hidden" id="thread_id" name="thread_id" value="<?php bp_the_thread_id(); ?>" />
    93                                                 <input type="hidden" name="subject" id="subject" value="<?php _e( 'Re: ', 'buddypress' ); echo str_replace( 'Re: ', '', bp_get_the_thread_subject() ); ?>" />
     85                                                <p class="submit"><input type="submit" name="send" value="<?php _e( 'Send Reply &rarr;', 'buddypress' ) ?> " id="send_reply_button"/></p>
     86
     87                                                <input type="hidden" id="thread_id" name="thread_id" value="<?php bp_the_thread_id() ?>" />
     88
     89                                                <input type="hidden" name="subject" id="subject" value="<?php printf( __( 'Re: %s', 'buddypress' ), str_replace( 'Re: ', '', bp_get_the_thread_subject() ) ) ?>" />
     90
    9491                                                <?php wp_nonce_field( 'messages_send_message', 'send_message_nonce' ) ?>
    95                                                
     92
    9693                                        </div>
    97                                        
     94
    9895                                </div>
    99                
     96
    10097                        </form>
    101                        
     98
    10299                        <?php do_action( 'bp_after_message_thread_reply' ) ?>
    103                
    104                 <?php endif; ?>
    105100
     101                <?php endif ?>
     102
    106103                <?php do_action( 'bp_after_message_thread_content' ) ?>
    107104
    108105        </div>
  • bp-themes/bp-sn-parent/optionsbar.php

     
    11<?php do_action( 'bp_before_options_bar' ) ?>
    22
    33<div id="optionsbar">
    4        
     4
    55        <h3><?php bp_get_options_title() ?></h3>
    66
    77        <?php do_action( 'bp_inside_before_options_bar' ) ?>
    8        
     8
    99        <?php if ( bp_has_options_avatar() ) : ?>
    1010
    11                 <p class="avatar">
    12                         <?php bp_get_options_avatar() ?>
    13                 </p>
     11                <p class="avatar"><?php bp_get_options_avatar() ?></p>
    1412
    15         <?php endif; ?>
    16                
    17                 <ul id="options-nav">
    18                         <?php bp_get_options_nav() ?>
    19                 </ul>
    20        
     13        <?php endif ?>
     14
     15        <ul id="options-nav">
     16
     17                <?php bp_get_options_nav() ?>
     18
     19        </ul>
     20
    2121        <?php do_action( 'bp_inside_after_options_bar' ) ?>
    2222
    2323</div>
  • bp-themes/bp-sn-parent/page.php

     
    1 <?php get_header(); ?>
     1<?php get_header() ?>
    22
    33        <div id="content" class="narrowcolumn">
    44
    55                <?php do_action( 'bp_before_blog_page' ) ?>
    6        
     6
    77                <div class="page" id="blog-page">
    8                        
    9                         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    10                        
    11                                 <h2 class="pagetitle"><?php the_title(); ?></h2>
    128
    13                                 <div class="post" id="post-<?php the_ID(); ?>">
    14                                        
     9                        <?php if ( have_posts() ) : while ( have_posts() ) : the_post() ?>
     10
     11                                <h2 class="pagetitle"><?php the_title() ?></h2>
     12
     13                                <div <?php post_class() ?> id="post-<?php the_ID() ?>">
     14
    1515                                        <div class="entry">
    16                                                
    17                                                 <?php the_content( __( '<p class="serif">Read the rest of this page &raquo;</p>', 'buddypress' ) ); ?>
    1816
    19                                                 <?php wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number')); ?>
    20                                                 <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p>', '</p>'); ?>
    21                                                
     17                                                <?php the_content( '<p class="serif">' . __( 'Read the rest of this page &raquo;', 'buddypress' ) . '</p>' ) ?>
     18
     19                                                <?php wp_link_pages( array( 'before' => '<p><strong>' . __( 'Pages:', 'buddypress' ) . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number') ) ?>
     20
     21                                                <?php edit_post_link( __( 'Edit this entry.', 'buddypress' ), '<p>', '</p>') ?>
     22
    2223                                        </div>
    23                                        
     24
    2425                                </div>
    25                                
    26                         <?php endwhile; endif; ?>
    27                        
     26
     27                        <?php endwhile; endif ?>
     28
    2829                </div>
    2930
    3031                <?php do_action( 'bp_after_blog_page' ) ?>
    31        
     32
    3233        </div>
    3334
    34 <?php get_sidebar(); ?>
     35        <?php get_sidebar() ?>
    3536
    36 <?php get_footer(); ?>
     37<?php get_footer() ?>
     38 No newline at end of file
  • bp-themes/bp-sn-parent/plugin-template.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
     4
    45                <?php do_action('bp_template_content_header') ?>
     6
    57        </div>
    68
    79        <div id="content">
     10
    811                <h2><?php do_action('bp_template_title') ?></h2>
    9        
     12
    1013                <?php do_action('bp_template_content') ?>
     14
    1115        </div>
    1216
    1317<?php get_footer() ?>
     18 No newline at end of file
  • bp-themes/bp-sn-parent/profile/change-avatar.php

     
    11<?php get_header() ?>
    22
    3         <div class="content-header">
     3        <div class="content-header"><!-- --></div>
    44
    5         </div>
     5        <div id="content">
    66
    7         <div id="content">
    8        
    97                <h2><?php _e( 'Change Avatar', 'buddypress' ) ?></h2>
    10                
     8
    119                <?php do_action( 'template_notices' ) ?>
    12        
     10
    1311                <?php do_action( 'bp_before_profile_avatar_upload_content' ) ?>
    1412
    1513                <p><?php _e( 'Your avatar will be used on your profile and throughout the site. If there is a <a href="http://gravatar.com">Gravatar</a> associated with your account email we will use that, or you can upload an image from your computer.', 'buddypress') ?></p>
    16                
     14
    1715                <form action="" method="post" id="avatar-upload-form" enctype="multipart/form-data">   
    18                        
     16
    1917                        <?php if ( 'upload-image' == bp_get_avatar_admin_step() ) : ?>
    20                        
     18
    2119                                <h3><?php _e( 'Your Current Avatar', 'buddypress' ) ?></h3>
    22                
    23                                 <p id="current-avatar">
    24                                         <?php bp_displayed_user_avatar( 'type=full') ?>
    25                                         <?php bp_displayed_user_avatar( 'type=thumb' ) ?>
    26                                 </p>
    27                                
     20
     21                                <p id="current-avatar"><?php bp_displayed_user_avatar( 'type=full') ?>
     22
     23                                        <?php bp_displayed_user_avatar( 'type=thumb' ) ?></p>
     24
    2825                                <?php if ( bp_get_user_has_avatar() ) : ?>
     26
    2927                                        <div class="generic-button" id="delete-avatar-button">
    30                                                 <a class="edit" href="<?php bp_avatar_delete_link() ?>" title="<?php _e( 'Delete Avatar', 'buddypress' ) ?>"><?php _e( 'Delete Avatar', 'buddypress' ) ?></a>
     28
     29                                                <a class="edit" href="<?php bp_avatar_delete_link() ?>" title="<?php esc_attr_e( 'Delete Avatar', 'buddypress' ) ?>"><?php _e( 'Delete Avatar', 'buddypress' ) ?></a>
     30
    3131                                        </div>
    32                                 <?php endif; ?>
    33                                
     32
     33                                <?php endif ?>
     34
    3435                                <h3><?php _e( 'Upload a New Avatar', 'buddypress' ) ?></h3>
    3536
    36                                 <p><?php _e( 'Click below to select a JPG, GIF or PNG format photo from your computer and then click \'Upload Image\' to proceed.', 'buddypress' ) ?></p>
    37                                
    38                                 <p id="avatar-upload">
    39                                         <input type="file" name="file" id="file" />
    40                                         <input type="submit" name="upload" id="upload" value="<?php _e( 'Upload Image', 'buddypress' ) ?>" />
    41                                         <input type="hidden" name="action" id="action" value="bp_avatar_upload" />
    42                                 </p>
     37                                <p><?php _e( "Click below to select a JPG, GIF or PNG format photo from your computer and then click 'Upload Image' to proceed.", 'buddypress' ) ?></p>
    4338
     39                                <p id="avatar-upload"><input type="file" name="file" id="file" />
     40
     41                                        <input type="submit" name="upload" id="upload" value="<?php esc_attr_e( 'Upload Image', 'buddypress' ) ?>" />
     42
     43                                        <input type="hidden" name="action" id="action" value="bp_avatar_upload" /></p>
     44
    4445                                <?php wp_nonce_field( 'bp_avatar_upload' ) ?>
    45                                
    46                         <?php endif; ?>
    47                        
     46
     47                        <?php endif ?>
     48
    4849                        <?php if ( 'crop-image' == bp_get_avatar_admin_step() ) : ?>
    49                        
     50
    5051                                <h3><?php _e( 'Crop Your New Avatar', 'buddypress' ) ?></h3>
    51                                
     52
    5253                                <img src="<?php bp_avatar_to_crop() ?>" id="avatar-to-crop" class="avatar" alt="<?php _e( 'Avatar to crop', 'buddypress' ) ?>" />
    53                                
     54
    5455                                <div id="avatar-crop-pane">
    55                                         <img src="<?php bp_avatar_to_crop() ?>" id="avatar-crop-preview" class="avatar" alt="<?php _e( 'Avatar preview', 'buddypress' ) ?>" />
     56
     57                                        <img src="<?php bp_avatar_to_crop() ?>" id="avatar-crop-preview" class="avatar" alt="<?php esc_attr_e( 'Avatar preview', 'buddypress' ) ?>" />
     58
    5659                                </div>
    5760
    58                                 <input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="<?php _e( 'Crop Image', 'buddypress' ) ?>" />
    59                                
     61                                <input type="submit" name="avatar-crop-submit" id="avatar-crop-submit" value="<?php esc_attr_e( 'Crop Image', 'buddypress' ) ?>" />
     62
    6063                                <input type="hidden" name="image_src" id="image_src" value="<?php bp_avatar_to_crop_src() ?>" />
    6164                                <input type="hidden" id="x" name="x" />
    6265                                <input type="hidden" id="y" name="y" />
     
    6467                                <input type="hidden" id="h" name="h" />
    6568
    6669                                <?php wp_nonce_field( 'bp_avatar_cropstore' ) ?>
    67                                
    68                         <?php endif; ?>
    69                        
     70
     71                        <?php endif ?>
     72
    7073                </form>
    71                
     74
    7275                <?php do_action( 'bp_after_profile_avatar_upload_content' ) ?>
    73                
     76
    7477        </div>
    7578
    7679<?php get_footer() ?>
     80 No newline at end of file
  • bp-themes/bp-sn-parent/profile/edit.php

     
    11<?php get_header() ?>
    22
    33        <div class="content-header">
    4        
     4
    55                <ul class="content-header-nav">
    6                         <?php bp_profile_group_tabs(); ?>
     6
     7                        <?php bp_profile_group_tabs() ?>
     8
    79                </ul>
    8        
     10
    911        </div>
    1012
    1113        <div id="content">
    1214
    1315                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    14        
     16
    1517                <?php do_action( 'bp_before_profile_edit_content' ) ?>
    16                
    17                 <?php if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    1818
     19                <?php if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) : while ( bp_profile_groups() ) : bp_the_profile_group() ?>
     20
    1921                <form action="<?php bp_the_profile_group_edit_form_action() ?>" method="post" id="profile-edit-form" class="standard-form <?php bp_the_profile_group_slug() ?>">
    2022
    2123                        <?php do_action( 'bp_before_profile_field_content' ) ?>
    22                
    23                                 <h2><?php printf( __( "Editing '%s'", "buddypress" ), bp_get_the_profile_group_name() ); ?></h2>
    24                        
    25                                 <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    26                                
     24
     25                                <h2><?php printf( __( "Editing '%s'", 'buddypress' ), bp_get_the_profile_group_name() ) ?></h2>
     26
     27                                <?php while ( bp_profile_fields() ) : bp_the_profile_field() ?>
     28
    2729                                        <div<?php bp_field_css_class( 'editfield' ) ?>>
    28                                        
     30
    2931                                                <?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
    30                                        
    31                                                         <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
     32
     33                                                        <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name();
     34                                                                if ( bp_get_the_profile_field_is_required() )
     35                                                                        _e( ' (required)', 'buddypress' ) ?></label>
     36
    3237                                                        <input type="text" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" value="<?php bp_the_profile_field_edit_value() ?>" />
    33                                                
    34                                                 <?php endif; ?>
    35                                
     38
     39                                                <?php endif ?>
     40
    3641                                                <?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?>
    37                                                
    38                                                         <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
     42
     43                                                        <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name();
     44                                                                if ( bp_get_the_profile_field_is_required() )
     45                                                                        _e( ' (required)', 'buddypress' ) ?></label>
     46
    3947                                                        <textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_edit_value() ?></textarea>
    40                                                
    41                                                 <?php endif; ?>
    4248
     49                                                <?php endif ?>
     50
    4351                                                <?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
    4452                                       
    45                                                         <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
     53                                                        <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name();
     54                                                                if ( bp_get_the_profile_field_is_required() )
     55                                                                        _e( ' (required)', 'buddypress' ) ?></label>
     56
    4657                                                        <select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>">
     58
    4759                                                                <?php bp_the_profile_field_options() ?>
     60
    4861                                                        </select>
    49                                                
    50                                                 <?php endif; ?>
    5162
     63                                                <?php endif ?>
     64
    5265                                                <?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?>
    53                                        
    54                                                         <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
     66
     67                                                        <label for="<?php bp_the_profile_field_input_name() ?>"><?php bp_the_profile_field_name();
     68                                                                if ( bp_get_the_profile_field_is_required() )
     69                                                                        _e( ' (required)', 'buddypress' ) ?></label>
     70
    5571                                                        <select name="<?php bp_the_profile_field_input_name() ?>" id="<?php bp_the_profile_field_input_name() ?>" multiple="multiple">
     72
    5673                                                                <?php bp_the_profile_field_options() ?>
     74
    5775                                                        </select>
    58                                        
    59                                                 <?php endif; ?>
    6076
     77                                                <?php endif ?>
     78
    6179                                                <?php if ( 'radio' == bp_get_the_profile_field_type() ) : ?>
    62                                        
     80
    6381                                                        <div class="radio">
    64                                                                 <span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></span>
    65                                                        
     82
     83                                                                <span class="label"><?php bp_the_profile_field_name();
     84                                                                        if ( bp_get_the_profile_field_is_required() )
     85                                                                                _e( ' (required)', 'buddypress' ) ?></span>
     86
    6687                                                                <?php bp_the_profile_field_options() ?>
    67                                                        
     88
    6889                                                                <?php if ( !bp_get_the_profile_field_is_required() ) : ?>
    6990                                                                        <a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name() ?>' );"><?php _e( 'Clear', 'buddypress' ) ?></a>
    70                                                                 <?php endif; ?>
     91                                                                <?php endif ?>
     92
    7193                                                        </div>
    72                                        
    73                                                 <?php endif; ?>
    74                                
     94
     95                                                <?php endif ?>
     96
    7597                                                <?php if ( 'checkbox' == bp_get_the_profile_field_type() ) : ?>
    76                                        
     98
    7799                                                        <div class="checkbox">
    78                                                                 <span class="label"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></span>
    79                                                        
     100
     101                                                                <span class="label"><?php bp_the_profile_field_name();
     102                                                                        if ( bp_get_the_profile_field_is_required() )
     103                                                                                _e( ' (required)', 'buddypress' ) ?></span>
     104
    80105                                                                <?php bp_the_profile_field_options() ?>
    81                                                         </div> 
    82                                        
    83                                                 <?php endif; ?>                                 
    84106
     107                                                        </div>
     108
     109                                                <?php endif ?>
     110
    85111                                                <?php if ( 'datebox' == bp_get_the_profile_field_type() ) : ?>
    86                                        
     112
    87113                                                        <div class="datebox">
    88                                                                 <label for="<?php bp_the_profile_field_input_name() ?>_day"><?php bp_the_profile_field_name() ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ) ?><?php endif; ?></label>
    89                                                        
     114                                                                <label for="<?php bp_the_profile_field_input_name() ?>_day"><?php bp_the_profile_field_name();
     115                                                                        if ( bp_get_the_profile_field_is_required() )
     116                                                                                _e( ' (required)', 'buddypress' ) ?></label>
     117
    90118                                                                <select name="<?php bp_the_profile_field_input_name() ?>_day" id="<?php bp_the_profile_field_input_name() ?>_day">
     119
    91120                                                                        <?php bp_the_profile_field_options( 'type=day' ) ?>
     121
    92122                                                                </select>
    93                                                        
     123
    94124                                                                <select name="<?php bp_the_profile_field_input_name() ?>_month" id="<?php bp_the_profile_field_input_name() ?>_month">
     125
    95126                                                                        <?php bp_the_profile_field_options( 'type=month' ) ?>
     127
    96128                                                                </select>
    97                                                        
     129
    98130                                                                <select name="<?php bp_the_profile_field_input_name() ?>_year" id="<?php bp_the_profile_field_input_name() ?>_year">
     131
    99132                                                                        <?php bp_the_profile_field_options( 'type=year' ) ?>
    100                                                                 </select>                                                               
     133
     134                                                                </select>
     135
    101136                                                        </div>
    102                                        
    103                                                 <?php endif; ?>
    104                                        
     137
     138                                                <?php endif ?>
     139
    105140                                                <?php do_action( 'bp_custom_profile_edit_fields' ) ?>
    106                                
     141
    107142                                                <p class="description"><?php bp_the_profile_field_description() ?></p>
     143
    108144                                        </div>
    109145
    110                                 <?php endwhile; ?>
     146                                <?php endwhile ?>
    111147
    112148                        <?php do_action( 'bp_after_profile_field_content' ) ?>
    113                        
     149
    114150                        <input type="submit" name="profile-group-edit-submit" id="profile-group-edit-submit" value="<?php _e( 'Save Changes', 'buddypress' ) ?> " />
    115                        
     151
    116152                        <input type="hidden" name="field_ids" id="field_ids" value="<?php bp_the_profile_group_field_ids() ?>" />
    117153                        <?php wp_nonce_field( 'bp_xprofile_edit' ) ?>
    118                        
     154
    119155                </form>
    120                
    121                 <?php endwhile; endif; ?>
    122                
     156
     157                <?php endwhile; endif ?>
     158
    123159                <?php do_action( 'bp_after_profile_edit_content' ) ?>
    124160
    125161        </div>
  • bp-themes/bp-sn-parent/profile/index.php

     
    11<?php get_header() ?>
    22
    3 <div class="content-header">
    4         <?php bp_last_activity() ?>
    5 </div>
     3        <div class="content-header">
    64
    7 <div id="content" class="vcard">
     5                <?php bp_last_activity() ?>
    86
    9         <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    10 
    11         <?php do_action( 'bp_before_profile_content' ) ?>
    12        
    13         <div class="left-menu">
    14                 <!-- Profile Menu (Avatar, Add Friend, Send Message buttons etc) -->
    15                 <?php locate_template( array( 'profile/profile-menu.php' ), true ) ?>
    167        </div>
    178
    18         <div class="main-column">
    19                 <div class="inner-tube">
    20                                                
    21                         <?php /* Profile Header (Name & Status) */ ?>
    22                         <?php locate_template( array( 'profile/profile-header.php' ), true ) ?>
    23                
    24                         <?php /* Profile Data Loop */ ?>
    25                         <?php locate_template( array( 'profile/profile-loop.php' ), true ) ?>
     9        <div id="content" class="vcard">
    2610
    27                         <?php do_action( 'bp_before_profile_activity_loop' ) ?>
    28                        
    29                         <?php /* Latest Activity Loop */ ?>
    30                         <?php if ( function_exists( 'bp_activity_install')) : ?>
    31                                
    32                                 <?php do_action( 'bp_before_profile_activity_widget' ) ?>
     11                <?php do_action( 'template_notices' ) // (error/success feedback) ?>
    3312
    34                                 <div class="bp-widget">
    35                                         <h4><?php echo bp_word_or_name( __( "My Latest Activity", 'buddypress' ), __( "%s's Latest Activity", 'buddypress' ), true, false ) ?> <span><a href="<?php echo bp_displayed_user_domain() . BP_ACTIVITY_SLUG ?>"><?php _e( 'See All', 'buddypress' ) ?> &rarr;</a></span></h4>
     13                <?php do_action( 'bp_before_profile_content' ) ?>
    3614
    37                                         <?php if ( bp_has_activities( 'type=personal&max=5' ) ) : ?>
     15                <div class="left-menu">
    3816
    39                                                 <div id="activity-rss">
    40                                                         <p><a href="<?php bp_activities_member_rss_link() ?>" title="<?php _e( 'RSS Feed', 'buddypress' ) ?>"><?php _e( 'RSS Feed', 'buddypress' ) ?></a></p>
    41                                                 </div>
     17                        <!-- Profile Menu (Avatar, Add Friend, Send Message buttons etc) -->
     18                        <?php locate_template( array( 'profile/profile-menu.php' ), true ) ?>
    4219
    43                                                 <ul id="activity-list" class="activity-list item-list">
    44                                                 <?php while ( bp_activities() ) : bp_the_activity(); ?>
    45                                                         <li class="<?php bp_activity_css_class() ?>">
    46                                                                 <div class="activity-avatar">
    47                                                                         <?php bp_activity_avatar() ?>
    48