• Resolved camillebti

    (@camillebti)


    Is it possible to change the field labels in the form? Specifically, I want to customize the language where people can select which mailing list they sign up for. Perhaps through CSS? I just can’t figure out what tag to use for that field label.

    (Note: the page is not published, but a link was required…)

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

Viewing 1 replies (of 1 total)
  • Plugin Author Constant Contact

    (@constantcontact)

    If it’s this phrase you’re thinking of specifically at the moment:

    Select list(s) to subscribe to
    

    Then we admittedly don’t have a readymade handy filter available, but due to the fact that we have made the plugin internationalization friendly, it’s still possible that it could be customized with a touch of code.

    If you’re comfortable with copy/pasting some code into your active theme’s functions.php file, then this following snippet should work. You’ll want to change the “Yo, choose your list!” to what wording you actually want here.

    function camillebti_customize_ctct_label( $text, $translation, $domain ) {
    	// This filter runs on A LOT of things, so we return if not working with our intended text value.
    	if ( 'Select list(s) to subscribe to' !== $text ) {
    		return $text;
    	}
    
    	// We found a match, so now let's return something custom.
    	return 'Yo, choose your list!';
    }
    add_filter( 'gettext', 'camillebti_customize_ctct_label', 10, 3 );
    

    Alternatively, if you prefer, I can turn this into a tiny plugin for you to install alongside everything else. Just let me know what you want the wording to say, so that I can get that in place ahead of time.

Viewing 1 replies (of 1 total)
  • The topic ‘Field Label Customization’ is closed to new replies.