Skip Navigation

[Resolved] Split: Blank default option in pre-populated select field – how to change/reove "Enter your internal title for the item" for repeatable group field

This support ticket is created 4 years, 5 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

Tagged: 

This topic contains 1 reply, has 2 voices.

Last updated by Minesh 4 years, 5 months ago.

Assisted by: Minesh.

Author
Posts
#1632793

A side question: is it possible to remove "Enter your internal title for the item" for repeatable groups?

#1633011

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

There isn't option to change that text, but the workaround would be that you can try to change the text using WordPress filter hook "gettext".

For example, add the following code to your current theme's functions.php file
or
Custom Code section offered by Toolset.

add_filter('gettext', function($translated_text, $untranslated_text, $domain){
    if($translated_text == "Enter your internal title for the item." && $domain == 'wpcf'){
        $translated_text = '';
    }
    return $translated_text;
}, 20, 3);

More help:
https://codex.wordpress.org/Plugin_API/Filter_Reference/gettext