Skip to:
Content

BuddyPress.org

Ticket #3862: 3862.01.patch

File 3862.01.patch, 1.7 KB (added by boonebgorges, 13 years ago)
  • bp-core/bp-core-widgets.php

    diff --git a/bp-core/bp-core-widgets.php b/bp-core/bp-core-widgets.php
    index 11dff4c..f617e5d 100644
    a b class BP_Core_Members_Widget extends WP_Widget { 
    4040
    4141                echo $before_widget;
    4242                echo $before_title
    43                    . $instance['title']
     43                   . '<a href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_members_root_slug() ) . '">' . $instance['title'] . '</a>'
    4444                   . $after_title; ?>
    4545
    4646                <?php if ( bp_has_members( 'user_id=0&type=' . $instance['member_default'] . '&max=' . $instance['max_members'] . '&populate_extras=0' ) ) : ?>
  • bp-groups/bp-groups-widgets.php

    diff --git a/bp-groups/bp-groups-widgets.php b/bp-groups/bp-groups-widgets.php
    index 2ceaef6..833c3d8 100644
    a b class BP_Groups_Widget extends WP_Widget { 
    4242
    4343                echo $before_widget;
    4444                echo $before_title
    45                    . $instance['title']
     45                   . '<a href="' . trailingslashit( bp_get_root_domain() . '/' . bp_get_groups_root_slug() ) . '">' . $instance['title'] . '</a>'
    4646                   . $after_title; ?>
    4747
    4848                <?php if ( bp_has_groups( 'user_id=' . $user_id . '&type=' . $instance['group_default'] . '&max=' . $instance['max_groups'] ) ) : ?>
  • bp-themes/bp-default/_inc/css/default.css

    diff --git a/bp-themes/bp-default/_inc/css/default.css b/bp-themes/bp-default/_inc/css/default.css
    index 5122abe..6dcb1dd 100644
    a b div#sidebar h3.widgettitle { 
    280280        margin: 25px -20px 10px -19px;
    281281        padding: 5px 15px;
    282282}
     283div#sidebar h3.widgettitle a {
     284        text-decoration: none;
     285        color: #555;
     286}
    283287#footer-widget-area .widget_search,
    284288div#sidebar .widget_search {
    285289        margin-top: 20px;