Making WordPress.org

Ticket #5031: 5031.2.diff

File 5031.2.diff, 911 bytes (added by dufresnesteven, 5 years ago)

Removes the button above the table if we are looking at reviews.

  • class-hooks.php

     
    631631
    632632                                echo '<div class="bbp-create-topic-wrapper">';
    633633                                if ( $searchform ) {
    634                                         printf(
    635                                                 /* translators: 1: markup for forums search field which is primary action, 2: markup for button to create topic */
    636                                                 __( '%1$s or %2$s', 'wporg-forums' ),
    637                                                 $searchform,
    638                                                 $btn
    639                                         );
     634
     635                                        // We already have a review button in the control rendered above this one.
     636                                        if( ! $is_reviews ) {
     637                                                printf(
     638                                                        /* translators: 1: markup for forums search field which is primary action, 2: markup for button to create topic */
     639                                                        __( '%1$s or %2$s', 'wporg-forums' ),
     640                                                        $searchform,
     641                                                        $btn
     642                                                );
     643                                        } else {
     644                                                echo $searchform;
     645                                        }
    640646                                } else {
    641647                                        echo $btn;
    642648                                }