Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/12/2023 01:03:24 AM (12 months ago)
Author:
imath
Message:

Update the hello BuddyPress & credits screens

  • Inform about the 2 top features of the 12.0.0 release.
  • Add a credits section for the Documentation team.
  • Inform about the 12.0.0 contributors.

Props dcavins

See #9002
Closes https://github.com/buddypress/buddypress/pull/174

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-admin.php

    r13576 r13594  
    753753        $version      =  self::display_version();
    754754        $version_slug = 'version-' . str_replace( '.', '-', $version );
     755
     756        // The BP Classic Add-on's Modal box.
     757        $classic_box = add_query_arg(
     758            array(
     759                'tab'  => 'bp-add-ons',
     760                'show' => 'bp-classic',
     761            ),
     762            network_admin_url( 'plugin-install.php' )
     763        );
     764
     765        // The URLs settings screen.
     766        $rewrites_screen = add_query_arg(
     767            array(
     768                'page' => 'bp-rewrites',
     769            ),
     770            bp_get_admin_url( 'admin.php' )
     771        );
    755772    ?>
    756773
     
    776793                    <div id="dynamic-content"></div>
    777794                    <div id="top-features">
     795                        <h2>
     796                            <?php
     797                            printf(
     798                                    /* Translators: %s is a raising hands emoji. */
     799                                    esc_html__( 'You now have complete control over all BuddyPress-generated URLs %s', 'buddypress' ),
     800                                    wp_staticize_emoji( '🙌' )
     801                                );
     802                            ?>
     803                        </h2>
    778804                        <p>
    779                             <?php esc_html_e( 'Thanks for upgrading BuddyPress to 11.0.0.', 'buddypress' ); ?>
    780                             <?php esc_html_e( 'This new major version of your site’s community engine introduces around 50 changes mostly acting under the hood to improve performance, consistency and the stability of the plugin.', 'buddypress' ); ?>
    781                             <?php esc_html_e( 'Here are five important changes we would like to highlight:', 'buddypress' ); ?>
     805                            <?php esc_html_e( 'Among the 79 changes introduced in 12.0.0, the BP Rewrites API is a massive revolution opening the way for a progressive BuddyPress evolution.', 'buddypress' ); ?>
     806                            <?php esc_html_e( 'Based on 10 years of experience gained through hard work, we are beginning to reimagine what it means to organize and manage communities within WordPess.', 'buddypress' ); ?>
     807                            <?php esc_html_e( 'Here are the immediate benefits of the new BP Rewrites API :', 'buddypress' ); ?>
    782808                        </p>
    783809                        <ol>
     
    785811                                <?php
    786812                                printf(
    787                                     /* Translators: %s is a the link to the .webp support developer note. */
    788                                     esc_html__( 'You may now use %s images for your profile and cover images (requires WordPress 5.8 or newer).', 'buddypress' ),
     813                                    /* Translators: %s is a the link to the URLs settings screen */
     814                                    esc_html__( 'You can customize each piece of any URL generated by BuddyPress to better reflect your unique community using the new %s.', 'buddypress' ),
    789815                                    sprintf(
    790                                         '<a href="%s">.webp</a>',
    791                                         esc_url( 'https://bpdevel.wordpress.com/2022/11/24/webp-support-is-arriving-in-buddypress-11-0-0/' )
     816                                        '<a href="%1$s">%2$s</a>',
     817                                        esc_url( $rewrites_screen ),
     818                                        esc_html__( 'URLs settings screen', 'buddypress' )
    792819                                    )
    793820                                );
     
    795822                            </li>
    796823                            <li>
    797                                 <?php
    798                                 printf(
    799                                     /* Translators: %s is a the link to the community assets restricting filter developer note. */
    800                                     esc_html__( 'A %s was introduced to only load BuddyPress JavaScript & CSS assets on BuddyPress-generated pages.', 'buddypress' ),
    801                                     sprintf(
    802                                         '<a href="%1$s">%2$s</a>',
    803                                         esc_url( 'https://bpdevel.wordpress.com/2022/11/21/buddypress-will-soon-only-load-its-javascript-and-style-assets-into-the-community-area-of-your-site/' ),
    804                                         esc_html__( 'new filter', 'buddypress' )
    805                                     )
    806                                 );
    807                                 ?>
     824                                <?php esc_html_e( 'Pretty or plain, BuddyPress just works no matter which option you choose for your permalink settings.', 'buddypress' ); ?>
    808825                            </li>
    809826                            <li>
    810                                 <?php
    811                                 printf(
    812                                     /* Translators: %s is a the link to the deprecated code developer note. */
    813                                     esc_html__( 'The way BuddyPress loads its %s has been improved.', 'buddypress' ),
    814                                     sprintf(
    815                                         '<a href="%1$s">%2$s</a>',
    816                                         esc_url( 'https://bpdevel.wordpress.com/2022/11/20/the-way-buddypress-loads-deprecated-code-will-change-in-version-11-0-0/' ),
    817                                         esc_html__( 'deprecated code', 'buddypress' )
    818                                     )
    819                                 );
    820                                 ?>
    821                             </li>
    822                             <li>
    823                                 <?php
    824                                 printf(
    825                                     /* Translators: %s is a the link to the activity loop new arguments developer note. */
    826                                     esc_html__( 'Advanced users or developers can now extend the Activity loop to %s.', 'buddypress' ),
    827                                     sprintf(
    828                                         '<a href="%1$s">%2$s</a>',
    829                                         esc_url( 'https://bpdevel.wordpress.com/2022/12/01/bp-11-fetch-activities-for-or-excluding-a-group-of-users/' ),
    830                                         esc_html__( 'include or exclude a list of users', 'buddypress' )
    831                                     )
    832                                 );
    833                                 ?>
    834                             </li>
    835                             <li>
    836                                 <?php
    837                                 printf(
    838                                     /* Translators: %s is a the link to the xProfile fields loop edited argument developer note. */
    839                                     esc_html__( 'Advanced users or developers can now build custom xProfile loops %s.', 'buddypress' ),
    840                                     sprintf(
    841                                         '<a href="%1$s">%2$s</a>',
    842                                         esc_url( 'https://bpdevel.wordpress.com/2022/12/06/bp-11-bp_has_profile-now-accepts-an-array-of-profile-group-ids/' ),
    843                                         esc_html__( 'including a specific set of profile field groups', 'buddypress' )
    844                                     )
    845                                 );
    846                                 ?>
     827                                <?php esc_html_e( 'Routing BuddyPress URLs is faster, more reliable, extensible, testable and fully compliant with WordPress best practices.', 'buddypress' ); ?>
    847828                            </li>
    848829                        </ol>
     
    850831                        <hr class="bp-hello-divider"/>
    851832
    852                         <h2><?php esc_html_e( '11.0.0 also marks the beginning of a transitional year for BuddyPress: get ready for great features and changes.', 'buddypress' ); ?></h2>
    853 
    854                         <p>
     833                        <h2>
    855834                            <?php
    856835                            printf(
    857836                                /* translators: %s is the placeholder for the link to the BuddyPress Add-ons administration page. */
    858                                 esc_html__( 'In 10.0.0, we’ve introduced a %s to easily find BuddyPress Add-ons maintained by the BuddyPress Core Team. Check this list often as we will soon publish the following add-ons:', 'buddypress' ),
     837                                esc_html__( 'Do you need to maintain backward compatibility? %s has you covered.', 'buddypress' ),
    859838                                sprintf(
    860839                                    '<a href="%1$s">%2$s</a>',
    861                                     esc_url( add_query_arg( 'tab', 'bp-add-ons', network_admin_url( 'plugin-install.php' ) ) ),
    862                                     esc_html__( 'new area in the Plugin Administration screen', 'buddypress' )
     840                                    esc_url( $classic_box ),
     841                                    esc_html__( 'BP Classic', 'buddypress' )
     842                                )
     843                            );
     844                            ?>
     845                        </h2>
     846
     847                        <p>
     848                            <?php esc_html_e( 'Although we chose to extend our beta testing period to 3 months for this major release and  documented what BuddyPress plugin authors need to do to be ready for our core change, some of them might need a little more time to be fully compatible with the latest BuddyPress version.', 'buddypress' ); ?>
     849                            <?php esc_html_e( 'Or, for instance, you might still use the BP Default theme (which was deprecated 10 years ago) or a BP Legacy Widget.', 'buddypress' ); ?>
     850                            <?php
     851                            printf(
     852                                /* translators: %s is the placeholder for the link to the BuddyPress Add-ons administration page. */
     853                                esc_html__( 'If so, you can download and activate %s for your backward compatibility needs.', 'buddypress' ),
     854                                sprintf(
     855                                    '<a href="%1$s">%2$s</a>',
     856                                    esc_url( $classic_box ),
     857                                    esc_html__( 'BP Classic', 'buddypress' )
    863858                                )
    864859                            );
    865860                            ?>
    866861                        </p>
    867                         <ol>
    868                             <li><?php esc_html_e( '"THE" long-awaited feature: Community Media Attachments.', 'buddypress' ); ?></li>
    869                             <li><?php esc_html_e( 'A revolutionary Block-based Activity Post Form to standardize the way to extend activity updates with richer & more engaging content.', 'buddypress' ); ?></li>
    870                         </ol>
    871                         <p>
     862
     863                        <hr class="bp-hello-divider"/>
     864
     865                        <h2>
    872866                            <?php
    873867                            printf(
    874                                 /* translators: %s is the placeholder for the link to the BP Rewrites' w.org plugin page. */
    875                                 esc_html__( 'An example about this new way to keep moving forward is the %s Add-on.', 'buddypress' ),
    876                                 sprintf(
    877                                     '<a href="%1$s">%2$s</a>',
    878                                     esc_url( 'https://wordpress.org/plugins/bp-rewrites/' ),
    879                                     esc_html__( 'BP Rewrites', 'buddypress' )
    880                                 )
    881                             );
    882                             ?>
    883                             <?php esc_html_e( 'You can already test this breaking change, which uses the WordPress way to parse URLs (thanks to the WP Rewrites API), and report issues to us or to the third-party plugin authors.', 'buddypress' ); ?>
    884                             <?php esc_html_e( 'Once BP Rewrites are merged into BuddyPress 12.0.0 (our next major release), we’ll make sure to build a backward-compatibility add-on so that you can still use plugins that do not work with "BP Rewrites".', 'buddypress' ); ?>
    885                         </p>
    886                         <p>
    887                             <?php
    888                             printf(
    889                                     /* Translators: %s is a Passport control emoji. */
    890                                     esc_html__( 'By the way, the latest version of BP Rewrites also includes a feature to restrict the community area to your site members only %s.', 'buddypress' ),
    891                                     wp_staticize_emoji( '🛂' )
     868                                    /* Translators: %s is a woman supervillain emoji. */
     869                                    esc_html__( 'Here\'s another benefit of the BP Rewrites API: the new "members only" community visibility level %s', 'buddypress' ),
     870                                    wp_staticize_emoji( '🦹🏻' )
    892871                                );
    893872                            ?>
     873                        </h2>
     874
     875                        <p>
     876                            <?php esc_html_e( 'We\'ve heard from BuddyPress end-users that being able to easily restrict access to their community is a necessary feature. And, thanks to the BP Rewrites API, we are now able to make this possible.', 'buddypress' ); ?>
     877                            <?php esc_html_e( 'With this first iteration, a site admin can now choose whether the community is fully public or is only accessible to logged-in members.', 'buddypress' ); ?>
     878                            <?php esc_html_e( 'In future versions, we hope to add granularity to this choice, so that community administrators can choose to highlight their members but share activities only inside the community "gates" for example.', 'buddypress' ); ?>
    894879                        </p>
    895880
     
    920905                            <?php
    921906                                printf(
    922                                     /* Translators: %s is a hugging face emoji. */
     907                                    /* Translators: %s is a smiling face with heart-eyes emoji. */
    923908                                    esc_html__( 'Many thanks to you for trusting BuddyPress to power your community site %s', 'buddypress' ),
    924                                     wp_staticize_emoji( '🤗' )
     909                                    wp_staticize_emoji( '😍' )
    925910                                );
    926911                            ?>
     
    937922                        printf(
    938923                            /* translators: 1: heart dashicons. 2: BP Credits screen url. 3: number of BuddyPress contributors to this version. */
    939                             _n( 'Built with %1$s by <a href="%2$s">%3$d volunteer</a>.', 'Built with %1$s by <a href="%2$s">%3$d volunteers</a>.', 34, 'buddypress' ),
     924                            _n( 'Built with %1$s by <a href="%2$s">%3$d volunteer</a>.', 'Built with %1$s by <a href="%2$s">%3$d volunteers</a>.', 26, 'buddypress' ),
    940925                            '<span class="dashicons dashicons-heart"></span>',
    941926                            esc_url( bp_get_admin_url( 'admin.php?page=bp-credits' ) ),
    942                             number_format_i18n( 34 )
     927                            number_format_i18n( 26 )
    943928                        );
    944929                        ?>
     
    952937                            printf(
    953938                                '<a class="twitter bp-tooltip" data-bp-tooltip="%1$s" href="%2$s"><span class="screen-reader-text">%3$s</span></a>',
    954                                 esc_attr__( 'Follow BuddyPress on Twitter', 'buddypress' ),
     939                                esc_attr__( 'Follow BuddyPress on X/Twitter', 'buddypress' ),
    955940                                esc_url( 'https://twitter.com/buddypress' ),
    956                                 esc_html__( 'Follow BuddyPress on Twitter', 'buddypress' )
     941                                esc_html__( 'Follow BuddyPress on X/Twitter', 'buddypress' )
    957942                            );
    958943                            ?>
     
    996981            <ul class="wp-people-group " id="wp-people-group-project-leaders">
    997982                <li class="wp-person" id="wp-person-johnjamesjacoby">
    998                     <a class="web" href="https://profiles.wordpress.org/johnjamesjacoby"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=120">
     983                    <a class="web" href="https://profiles.wordpress.org/johnjamesjacoby/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/7a2644fb53ae2f7bfd7143b504af396c?s=120">
    999984                    John James Jacoby</a>
    1000985                    <span class="title"><?php esc_html_e( 'Project Lead', 'buddypress' ); ?></span>
    1001986                </li>
    1002987                <li class="wp-person" id="wp-person-boonebgorges">
    1003                     <a class="web" href="https://profiles.wordpress.org/boonebgorges"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/9cf7c4541a582729a5fc7ae484786c0c?s=120">
     988                    <a class="web" href="https://profiles.wordpress.org/boonebgorges/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/9cf7c4541a582729a5fc7ae484786c0c?s=120">
    1004989                    Boone B. Gorges</a>
    1005990                    <span class="title"><?php esc_html_e( 'Lead Developer', 'buddypress' ); ?></span>
    1006991                </li>
    1007992                <li class="wp-person" id="wp-person-djpaul">
    1008                     <a class="web" href="https://profiles.wordpress.org/djpaul"><img alt="" class="gravatar" src="https://avatars2.githubusercontent.com/u/1275914?s=120">
     993                    <a class="web" href="https://profiles.wordpress.org/djpaul/"><img alt="" class="gravatar" src="https://avatars2.githubusercontent.com/u/1275914?s=120">
    1009994                    Paul Gibbs</a>
    1010995                    <span class="title"><?php esc_html_e( 'Lead Developer', 'buddypress' ); ?></span>
    1011996                </li>
    1012997                <li class="wp-person" id="wp-person-r-a-y">
    1013                     <a class="web" href="https://profiles.wordpress.org/r-a-y"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3bfa556a62b5bfac1012b6ba5f42ebfa?s=120">
     998                    <a class="web" href="https://profiles.wordpress.org/r-a-y/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3bfa556a62b5bfac1012b6ba5f42ebfa?s=120">
    1014999                    Ray</a>
    10151000                    <span class="title"><?php esc_html_e( 'Lead Developer', 'buddypress' ); ?></span>
    10161001                </li>
    10171002                <li class="wp-person" id="wp-person-imath">
    1018                     <a class="web" href="https://profiles.wordpress.org/imath"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/8b208ca408dad63888253ee1800d6a03?s=120">
     1003                    <a class="web" href="https://profiles.wordpress.org/imath/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/8b208ca408dad63888253ee1800d6a03?s=120">
    10191004                    Mathieu Viet</a>
    10201005                    <span class="title"><?php esc_html_e( 'Lead Developer', 'buddypress' ); ?></span>
    10211006                </li>
    10221007                <li class="wp-person" id="wp-person-mercime">
    1023                     <a class="web" href="https://profiles.wordpress.org/mercime"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/fae451be6708241627983570a1a1817a?s=120">
     1008                    <a class="web" href="https://profiles.wordpress.org/mercime/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/fae451be6708241627983570a1a1817a?s=120">
    10241009                    Mercime</a>
    10251010                    <span class="title"><?php esc_html_e( 'Lead Developer', 'buddypress' ); ?></span>
     
    10301015            <ul class="wp-people-group " id="wp-people-group-core-team">
    10311016                <li class="wp-person" id="wp-person-hnla">
    1032                     <a class="web" href="https://profiles.wordpress.org/hnla"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3860c955aa3f79f13b92826ae47d07fe?s=120">
     1017                    <a class="web" href="https://profiles.wordpress.org/hnla/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/3860c955aa3f79f13b92826ae47d07fe?s=120">
    10331018                    Hugo Ashmore</a>
    10341019                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10351020                </li>
    10361021                <li class="wp-person" id="wp-person-dcavins">
    1037                     <a class="web" href="https://profiles.wordpress.org/dcavins"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/a5fa7e83d59cb45ebb616235a176595a?s=120">
     1022                    <a class="web" href="https://profiles.wordpress.org/dcavins/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/a5fa7e83d59cb45ebb616235a176595a?s=120">
    10381023                    David Cavins</a>
    10391024                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10401025                </li>
    10411026                <li class="wp-person" id="wp-person-tw2113">
    1042                     <a class="web" href="https://profiles.wordpress.org/tw2113"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/a5d7c934621fa1c025b83ee79bc62366?s=120">
     1027                    <a class="web" href="https://profiles.wordpress.org/tw2113/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/a5d7c934621fa1c025b83ee79bc62366?s=120">
    10431028                    Michael Beckwith</a>
    10441029                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10451030                </li>
    10461031                <li class="wp-person" id="wp-person-henry-wright">
    1047                     <a class="web" href="https://profiles.wordpress.org/henry.wright"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/0da2f1a9340d6af196b870f6c107a248?s=120">
     1032                    <a class="web" href="https://profiles.wordpress.org/henry.wright/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/0da2f1a9340d6af196b870f6c107a248?s=120">
    10481033                    Henry Wright</a>
    10491034                    <span class="title"><?php esc_html_e( 'Community Support', 'buddypress' ); ?></span>
    10501035                </li>
    10511036                <li class="wp-person" id="wp-person-danbp">
    1052                     <a class="web" href="https://profiles.wordpress.org/danbp"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/0deae2e7003027fbf153500cd3fa5501?s=120">
     1037                    <a class="web" href="https://profiles.wordpress.org/danbp/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/0deae2e7003027fbf153500cd3fa5501?s=120">
    10531038                    danbp</a>
    10541039                    <span class="title"><?php esc_html_e( 'Community Support', 'buddypress' ); ?></span>
    10551040                </li>
    10561041                <li class="wp-person" id="wp-person-shanebp">
    1057                     <a class="web" href="https://profiles.wordpress.org/shanebp"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/ffd294ab5833ba14aaf175f9acc71cc4?s=120">
     1042                    <a class="web" href="https://profiles.wordpress.org/shanebp/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/ffd294ab5833ba14aaf175f9acc71cc4?s=120">
    10581043                    shanebp</a>
    10591044                    <span class="title"><?php esc_html_e( 'Community Support', 'buddypress' ); ?></span>
    10601045                </li>
    10611046                <li class="wp-person" id="wp-person-slaffik">
    1062                     <a class="web" href="https://profiles.wordpress.org/r-a-y"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/61fb07ede3247b63f19015f200b3eb2c?s=120">
     1047                    <a class="web" href="https://profiles.wordpress.org/r-a-y/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/61fb07ede3247b63f19015f200b3eb2c?s=120">
    10631048                    Slava Abakumov</a>
    10641049                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10651050                </li>
    10661051                <li class="wp-person" id="wp-person-offereins">
    1067                     <a class="web" href="https://profiles.wordpress.org/Offereins"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/2404ed0a35bb41aedefd42b0a7be61c1?s=120">
     1052                    <a class="web" href="https://profiles.wordpress.org/Offereins/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/2404ed0a35bb41aedefd42b0a7be61c1?s=120">
    10681053                    Laurens Offereins</a>
    10691054                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10701055                </li>
    10711056                <li class="wp-person" id="wp-person-netweb">
    1072                     <a class="web" href="https://profiles.wordpress.org/netweb"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=120">
     1057                    <a class="web" href="https://profiles.wordpress.org/netweb/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/97e1620b501da675315ba7cfb740e80f?s=120">
    10731058                    Stephen Edgar</a>
    10741059                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10751060                </li>
    10761061                <li class="wp-person" id="wp-person-espellcaste">
    1077                     <a class="web" href="https://profiles.wordpress.org/espellcaste"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/b691e67be0ba5cad6373770656686bc3?s=120">
     1062                    <a class="web" href="https://profiles.wordpress.org/espellcaste/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/b691e67be0ba5cad6373770656686bc3?s=120">
    10781063                    Renato Alves</a>
    10791064                    <span class="title"><?php esc_html_e( 'Core Developer', 'buddypress' ); ?></span>
    10801065                </li>
    10811066                <li class="wp-person" id="wp-person-venutius">
    1082                     <a class="web" href="https://profiles.wordpress.org/venutius"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/6a7c42a77fd94b82b217a7a97afdddbc?s=120">
     1067                    <a class="web" href="https://profiles.wordpress.org/venutius/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/6a7c42a77fd94b82b217a7a97afdddbc?s=120">
    10831068                    Venutius</a>
    10841069                    <span class="title"><?php esc_html_e( 'Community Support', 'buddypress' ); ?></span>
     1070                </li>
     1071            </ul>
     1072
     1073            <h3 class="wp-people-group"><?php esc_html_e( 'BuddyPress Docs Team', 'buddypress' ); ?></h3>
     1074            <ul class="wp-people-group " id="wp-people-group-docs-team">
     1075                <li class="wp-person" id="wp-person-jaz_on">
     1076                    <a class="web" href="https://profiles.wordpress.org/jaz_on/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/156bf201e3860e2d75a9f13a890de950?s=120">
     1077                    Jason Rouet</a>
     1078                    <span class="title"><?php esc_html_e( 'Documentation leader', 'buddypress' ); ?></span>
     1079                </li>
     1080                <li class="wp-person" id="wp-person-bouncingsprout">
     1081                    <a class="web" href="https://profiles.wordpress.org/bouncingsprout/"><img alt="" class="gravatar" src="//www.gravatar.com/avatar/8f6faaf383a02d2a478339c8dfbf910e?s=120">
     1082                    Ben Roberts</a>
     1083                    <span class="title"><?php esc_html_e( 'Documentation deputy', 'buddypress' ); ?></span>
    10851084                </li>
    10861085            </ul>
     
    10961095            </h3>
    10971096            <ul class="wp-people-group " id="wp-people-group-noteworthy">
    1098                 <li class="wp-person" id="wp-person-niftythree">
    1099                     <a class="web" href="https://profiles.wordpress.org/niftythree"><img alt="" class="gravatar" src="//gravatar.com/avatar/c8d0f5560b6e8f5749d81fc3232d6345?s=120">
    1100                     Nifty</a>
    1101                 </li>
    1102                 <li class="wp-person" id="wp-person-oztaser">
    1103                     <a class="web" href="https://profiles.wordpress.org/oztaser/"><img alt="" class="gravatar" src="//gravatar.com/avatar/06eb4dd13c0113bf826968ae16a13e52?s=120">
    1104                     Adil Öztaşer</a>
     1097                <li class="wp-person" id="wp-person-upadalavipul">
     1098                    <a class="web" href="https://profiles.wordpress.org/upadalavipul/"><img alt="" class="gravatar" src="//gravatar.com/avatar/2d450f193322c17d2138386e45c8ffbf?s=120">
     1099                    Upadala Vipul</a>
     1100                </li>
     1101                <li class="wp-person" id="wp-person-vapvarun">
     1102                    <a class="web" href="https://profiles.wordpress.org/vapvarun/"><img alt="" class="gravatar" src="//gravatar.com/avatar/78a3bf7eb3a1132fc667f96f2631e448?s=120">
     1103                    Varun Dubey</a>
    11051104                </li>
    11061105            </ul>
     
    11161115            </h3>
    11171116            <p class="wp-credits-list">
    1118                 <a href="https://profiles.wordpress.org/oztaser/">Adil Öztaşer (oztaser)</a>,
    1119                 <a href="https://profiles.wordpress.org/alexmangini/">Alex Mangini (alexmangini)</a>,
    1120                 <a href="https://profiles.wordpress.org/baasui/">baasui</a>,
    11211117                <a href="https://profiles.wordpress.org/bouncingsprout/">Ben Roberts (bouncingsprout)</a>,
    11221118                <a href="https://profiles.wordpress.org/boonebgorges/">Boone B Gorges (boonebgorges)</a>,
    1123                 <a href="https://profiles.wordpress.org/sbrajesh/">Brajesh Singh (sbrajesh)</a>,
    1124                 <a href="https://profiles.wordpress.org/dancaragea/">Dan Caragea (dancaragea)</a>,
     1119                <a href="https://profiles.wordpress.org/coffee2code/">Scott Reilly (coffee2code)</a>,
     1120                <a href="https://profiles.wordpress.org/corzel/">corzel</a>,
    11251121                <a href="https://profiles.wordpress.org/dcavins/">David Cavins (dcavins)</a>,
    1126                 <a href="https://profiles.wordpress.org/devutpol/">Deb Nath Utpol (devutpol)</a>,
     1122                <a href="https://profiles.wordpress.org/diabolique/">Diabolique</a>,
    11271123                <a href="https://profiles.wordpress.org/fawp/">fawp</a>,
    1128                 <a href="https://profiles.wordpress.org/fernandot/">Fernando Tellado (fernandot)</a>,
    1129                 <a href="https://profiles.wordpress.org/hnla/">Hugo Ashmore (hnla)</a>,
    1130                 <a href="https://profiles.wordpress.org/nobnob/">Javier Esteban (nobnob)</a>,
     1124                <a href="https://profiles.wordpress.org/iandunn/">Ian Dunn (iandunn)</a>,
     1125                <a href="https://profiles.wordpress.org/iamthewebb/">iamthewebb</a>,
     1126                <a href="https://profiles.wordpress.org/jaz_on/">Jason Rouet</a>,
    11311127                <a href="https://profiles.wordpress.org/johnjamesjacoby/">John James Jacoby (johnjamesjacoby)</a>,
    1132                 <a href="https://profiles.wordpress.org/jtymann/">jtymann</a>,
    1133                 <a href="https://profiles.wordpress.org/rudlinkon/">Linkon Miyan (rudlinkon)</a>,
    1134                 <a href="https://profiles.wordpress.org/martinutopia/">martinutopia</a>,
     1128                <a href="https://profiles.wordpress.org/lenasterg">Lena Stergatou (lenasterg)</a>,
    11351129                <a href="https://profiles.wordpress.org/imath/">Mathieu Viet (imath)</a>,
    1136                 <a href="https://profiles.wordpress.org/nickchomey/">Nick (nickchomey)</a>,
     1130                <a href="https://profiles.wordpress.org/mike80222/">Mike Witt (mike80222)</a>,
    11371131                <a href="https://profiles.wordpress.org/niftythree/">Nifty (niftythree)</a>,
    11381132                <a href="https://profiles.wordpress.org/DJPaul/">Paul Gibbs (DJPaul)</a>,
    1139                 <a href="https://profiles.wordpress.org/nekojonez/">Pieterjan Deneys (nekojonez)</a>,
     1133                <a href="https://profiles.wordpress.org/plugindevs/">Plugin Devs</a>,
    11401134                <a href="https://profiles.wordpress.org/r-a-y/">r-a-y</a>,
    1141                 <a href="https://profiles.wordpress.org/rafiahmedd/">Rafi Ahmed (rafiahmedd)</a>,
    1142                 <a href="https://github.com/ranfen/">ranfen</a>,
     1135                <a href="https://profiles.wordpress.org/rajinsharwar/">Rajin Sharwar (rajinsharwar)</a>,
     1136                <a href="https://profiles.wordpress.org/raviousprime/">raviousprime</a>,
    11431137                <a href="https://profiles.wordpress.org/espellcaste/">Renato Alves (espellcaste)</a>,
    1144                 <a href="https://profiles.wordpress.org/robinwpdeveloper/">Robin (robinwpdeveloper)</a>,
     1138                <a href="https://profiles.wordpress.org/shailu25/">Shail Mehta (shailu25)</a>,
    11451139                <a href="https://profiles.wordpress.org/shawfactor/">shawfactor</a>,
    1146                 <a href="https://profiles.wordpress.org/slaffik/">Slava Abakumov (slaffik)</a>,
    11471140                <a href="https://profiles.wordpress.org/sjregan/">sjregan</a>,
    1148                 <a href="https://profiles.wordpress.org/tahmidulkarim/">Tahmid ul Karim (tahmidulkarim)</a>,
    1149                 <a href="https://profiles.wordpress.org/teeboy4real/">teeboy4real</a>,
    1150                 <a href="https://profiles.wordpress.org/thomaslhotta/">thomaslhotta</a>,
    1151                 <a href="https://profiles.wordpress.org/username_/">username_</a>,
    1152                 <a href="https://profiles.wordpress.org/venutius/">Venutius</a>.
     1141                <a href="https://profiles.wordpress.org/upadalavipul/">Upadala Vipul (upadalavipul)</a>,
     1142                <a href="https://profiles.wordpress.org/vapvarun/">Varun Dubey (vapvarun)</a>.
    11531143            </p>
    11541144
     
    15861576        }
    15871577
     1578        if ( isset( $_GET['show'] ) && 'bp-classic' === $_GET['show'] ) {
     1579            wp_add_inline_script(
     1580                'plugin-install',
     1581                '
     1582                ( function() {
     1583                    document.onreadystatechange = function()  {
     1584                        if ( document.readyState === "complete" ) {
     1585                            document.querySelector( \'.plugin-card-bp-classic .open-plugin-details-modal\' ).click();
     1586                        }
     1587                    }
     1588                } )();
     1589                '
     1590            );
     1591        }
     1592
    15881593        // Display the "buddypress" favorites.
    15891594        display_plugins_table();
Note: See TracChangeset for help on using the changeset viewer.