Change the marketing consent checkbox text

📅 Published on

📝 Last updated

Documentation

»

Code Samples

»

Change the marketing consent checkbox text

Changes the marketing consent checkbox text in Groundhogg forms with your own custom text.

<?php

/**
 * Modify the marketing consent field label.
 *
 * This function customizes the label for the marketing consent checkbox.
 *
 * @param string $label The default field label.
 * @param string $field The field type.
 * @return string The modified field label.
 */
function custom_marketing_consent_label( $label, $field ) {
    if ( $field === 'marketing_consent' ) {
        $label = __( 'Email me a weekly newsletter, exclusive products, and promo deals. You can unsubscribe at any time.', 'groundhogg' );
    }
    return $label;
}

add_filter( 'groundhogg/default_field_label', 'custom_marketing_consent_label', 10, 2 );

Was this helpful?

Let us know if this document answered your question. That’s the only way we can improve.