• Resolved thecitymission

    (@thecitymission)


    Hi There!

    Is it possible to change the “Card name” field to something different, such as “Cardholder name”? A good percentage of our donors are putting in Visa, MasterCard, etc. instead of the person’s name on the card, and it comes through this way on Stripe as well. This creates issues as our data processing team reconciles the gifts for the day, adds donors to our donor management system, and attempts to look people up on Stripe for donor history. We can do it, but this definitely slows down the process.

    We had our developer read through the Changing Form Labels documentation (https://givewp.com/documentation/developers/changing-form-label-text/), but they believe that will only work on each high level category on the form – ex. Personal Info.

    Is changing a subfield possible, or do they need to remain uniform since Give works with so many different payment processors?

    The City Mission

    The page I need help with: [log in to see the link]

Viewing 16 replies (of 16 total)
  • I had this same problem in the Stripe plugin. Here’s the fix (form he helpful GiveWP tech support staff):

    The snippet above has a conditional that would only work for give core plugin. To make it work for the Stripe add-on, please change the snippet to the below:

    function my_give_text_switcher( $translations, $text, $domain ) {
    	
    	if ( $domain == 'give-stripe' && $translations == 'Card name' ) {
    		$translations = __( 'Cardholder name', 'give-stripe' );
    	}
    	return $translations;
    }
    add_filter( 'gettext', 'my_give_text_switcher', 10, 3 );
    • This reply was modified 6 years, 4 months ago by oregondean.
Viewing 16 replies (of 16 total)
  • The topic ‘Possible to change “Card name” to cardholder name?’ is closed to new replies.