• Resolved bigbankclub

    (@bigbankclub)


    When the emails arrive. Each field is listed in the email with a number from 1 through the amount of fields, can we change or remove these?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Dmytro – WPMU DEV Support

    (@wpmudevsupport16)

    Hello @bigbankclub,

    Please try adding the following snippet as a must use plugin, by saving it as a PHP file, for example “forminator-email-remove-numbers.php“, and then uploading to /wp-content/mu-plugins/ directory on the server.

    <?php
    
    add_filter( 'forminator_custom_form_after_render_value', function ( $value, $custom_form, $slug, $data ) {
        $value .= '<style>li {list-style: none;list-style-type: none;</style>';
    	return $value;
    }, 10, 4);

    Sometimes, if there’s no “mu-plugins” folder inside /wp-content/, you may have to create it first.

    Hope this helps. Let us know if you need any further assistance.

    Best Regards,
    Dmytro

    Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hi @bigbankclub ,

    It’s been over a week since we shared the above code snippet so I will assume it helped and I can close the topic ??

    kind regards,
    Kasia

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Numbers in email’ is closed to new replies.