| @@ -3,9 +3,9 @@ | ||
| 3 | 3 | * Admin Footer |
| 4 | 4 | * |
| 5 | 5 | * @package Give |
| 6 | 6 | * @subpackage Admin/Footer |
| 7 | - * @copyright Copyright (c) 2016, WordImpress | |
| 7 | + * @copyright Copyright (c) 2016, GiveWP | |
| 8 | 8 | * @license https://opensource.org/licenses/gpl-license GNU Public License |
| 9 | 9 | * @since 1.0 |
| 10 | 10 | */ |
| 11 | 11 | |
| @@ -16,14 +16,13 @@ | ||
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * Add rating links to the admin dashboard |
| 19 | 19 | * |
| 20 | + * @param string $footer_text The existing footer text | |
| 21 | + * | |
| 22 | + * @return string | |
| 20 | 23 | * @since 1.0 |
| 21 | 24 | * @global string $typenow |
| 22 | - * | |
| 23 | - * @param string $footer_text The existing footer text | |
| 24 | - * | |
| 25 | - * @return string | |
| 26 | 25 | */ |
| 27 | 26 | function give_admin_rate_us( $footer_text ) { |
| 28 | 27 | global $typenow; |
| 29 | 28 | |
| @@ -29,10 +28,10 @@ | ||
| 29 | 28 | |
| 30 | 29 | if ( 'give_forms' === $typenow ) { |
| 31 | 30 | $rate_text = sprintf( |
| 32 | 31 | /* translators: %s: Link to 5 star rating */ |
| 33 | - __( 'If you like <strong>Give</strong> please leave us a %s rating. It takes a minute and helps a lot. Thanks in advance!', 'give' ), | |
| 34 | - '<a href="https://wordpress.org/support/view/plugin-reviews/give?filter=5#postform" target="_blank" class="give-rating-link" style="text-decoration:none;" data-rated="' . esc_attr__( 'Thanks :)', 'give' ) . '">★★★★★</a>' | |
| 32 | + __( 'If you like <strong>GiveWP</strong> please leave us a %s rating. It takes a minute and helps a lot. Thanks in advance!', 'give' ), | |
| 33 | + '<a href="https://docs.givewp.com/rate-givewp" target="_blank" class="give-rating-link" style="text-decoration:none;" data-rated="' . esc_attr__( 'Thanks :)', 'give' ) . '">★★★★★</a>' | |
| 35 | 34 | ); |
| 36 | 35 | |
| 37 | 36 | return $rate_text; |
| 38 | 37 | } else { |