PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
← All changes | includes/admin/admin-footer.php +5 -6 2.3.24.16.9 View file →
@@ -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' ) . '">&#9733;&#9733;&#9733;&#9733;&#9733;</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' ) . '">&#9733;&#9733;&#9733;&#9733;&#9733;</a>'
35 34 );
36 35
37 36 return $rate_text;
38 37 } else {