Title: Delete help text
Last modified: November 20, 2023

---

# Delete help text

 *  Resolved [andres01serrano](https://wordpress.org/support/users/andres01serrano/)
 * (@andres01serrano)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/delete-help-text/)
 * Hello, I would like to know how I can make sure that this does not appear in 
   the radio fields when I hover the mouse over the text. thank you
 * [https://ibb.co/H7229rY](https://ibb.co/H7229rY)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Support [Laura – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support8/)
 * (@wpmudev-support8)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/delete-help-text/#post-17218384)
 * Hi [@andres01serrano](https://wordpress.org/support/users/andres01serrano/)
 * I hope you’re well today!
 * Those tooltips are browser feature and they are not added by Forminator. They
   are related to accessibility.
 * By default, they are created based on the “title” attribute so to remove them(
   other than actually reconfiguring browser to not show them) you would need to
   set “title” attributes to be empty. That’s not really recommended due to SEO 
   and accessibility reasons but if you want to do this, you can add this code as
   MU plugin to the site
 *     ```
       <?php 
   
       add_filter( 'forminator_field_single_markup', 'wpmu_remove_browser_tooltip_title', 99, 1 ); 
       function wpmu_remove_browser_tooltip_title( $html ) { 
   
       	$pattern = '/(<label[^>]*title=")(.*?)"/';
       	$replacement = '$1"';
   
       	$html = preg_replace($pattern, $replacement, $html);
   
       	return $html;
       }
       ```
   
 * – create an empty file with a .php extension (e.g. “forminator-radio-remove-tooltips.
   php”) in the “/wp-content/mu-plugins” folder of your site’s WordPress installation
   on the server
 * – copy and paste that code into it
 * – save the file and purge all cache on site/server (if there is any).
 * It would remove those tooltips from “radio” fields.
 * Best regards,
    Adam
 *  Thread Starter [andres01serrano](https://wordpress.org/support/users/andres01serrano/)
 * (@andres01serrano)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/delete-help-text/#post-17218462)
 * Thanks for the answer, an additional question, will this only affect forminator?
 *  Plugin Support [Laura – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support8/)
 * (@wpmudev-support8)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/delete-help-text/#post-17218589)
 * Hi [@andres01serrano](https://wordpress.org/support/users/andres01serrano/)
 * Yes, it will only affect Forminator and only its “radio” fields.
 * Best regards,
    Adam

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Delete help text’ is closed to new replies.

 * ![](https://ps.w.org/forminator/assets/icon-256x256.gif?rev=3443182)
 * [Forminator Forms – Contact Form, Payment Form & Custom Form Builder](https://wordpress.org/plugins/forminator/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/forminator/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/forminator/)
 * [Active Topics](https://wordpress.org/support/plugin/forminator/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/forminator/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/forminator/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Laura – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support8/)
 * Last activity: [2 years, 6 months ago](https://wordpress.org/support/topic/delete-help-text/#post-17218589)
 * Status: resolved