Skip to:
Content

BuddyPress.org

Ticket #4864: 4864.patch

File 4864.patch, 1.3 KB (added by mercime, 12 years ago)

Adding back Greeting

  • bp-templates/bp-legacy/buddypress/activity/post-form.php

     
    1818                        <?php bp_loggedin_user_avatar( 'width=' . bp_core_avatar_thumb_width() . '&height=' . bp_core_avatar_thumb_height() ); ?>
    1919                </a>
    2020        </div>
     21       
     22        <p class="activity-greeting"><?php if ( bp_is_group() )
     23                printf( __( "What's new in %s, %s?", 'buddypress' ), bp_get_group_name(), bp_get_user_firstname() );
     24        else
     25                printf( __( "What's new, %s?", 'buddypress' ), bp_get_user_firstname() );
     26        ?></p>
    2127
    2228        <div id="whats-new-content">
    2329                <div id="whats-new-textarea">
  • bp-templates/bp-legacy/css/buddypress.css

     
    112112        margin-left: 55px;
    113113        padding: 0 0 20px 20px;
    114114}
     115#buddypress form#whats-new-form p.activity-greeting {
     116        line-height: 0.5em;
     117        margin-bottom: 15px;
     118        margin-left: 75px;
     119}
    115120#buddypress form#whats-new-form textarea {
    116121        background: #fff;
    117122        border: 1px inset #ccc;