Home / Admin / Displaying Shortcodes Inside Form Label Fields
Duplicate Snippet

Embed Snippet on Your Site

Displaying Shortcodes Inside Form Label Fields

<10
Code Preview
php
<?php
/**
 * Run shortcodes on the form label field.
 *
 * @link   https://wpforms.com/developers/how-to-display-shortcodes-inside-the-label-of-the-form-field/
 */
 
function add_shortcode_to_label( $field, $form_data ) {
         
        // Check that the form ID is 1055 and the field id is 4
    if ( 1055 === absint( $form_data[ 'id' ] ) && 4 === absint( $field[ 'id' ] ) ) {
 
        echo do_shortcode( ' [su_tooltip text="Your information is completely protected and will not be sold!<br><a href=https://myexamplesite.com/privacy/>Click here to learn more.</a>" behavior="click" hide_delay="500"]Click Me![/su_tooltip] ' );
     
        }
}
add_action( 'wpforms_display_field_before', 'add_shortcode_to_label', 16, 2 );

Comments

Add a Comment