Hey @mad4uash1 – To translate that text you need implement the following code snippet:
/**
* Translate "Return to All Donations" text
*
* @param $translations
* @param $text
* @param $domain
*
* @return string
*/
function my_232321_return_to_all_donations_text( $translations, $text, $domain ) {
// Changes "Name" tooltip
if ( $domain == 'give' && $text == 'Return to All Donations' ) {
return 'Return to your fundraising donation page';
}
return $translations;
}
add_filter( 'gettext', 'my_232321_return_to_all_donations_text', 10, 3 );
This will change the text to be what you specified. If you’re not sure how to add this to your site please check out: https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/
Please let me know if you have anymore questions! Thanks.