Hello @changetherulesemail ,
Did you use any plugin for your translation like WPML or Polylang?
Please let me know.
Glen
Hi there Glen, Nope there is no plugin for the dual-language site, I created 2 separate pages for English and the other language, which is part of the requirements. Though Contact form 7 can be duplicate but the upload function can’t. Thanks
@changetherulesemail sorry for the late reply.
Try to update to the latest version 1.3.6.3.
In your theme functions.php file add this code.
add_filter('dnd_cf7_data_options','change_cf7_upload_options');
function change_cf7_upload_options( $options ) {
global $post;
if( $post->ID == YOUR_PAGE_ID ) {
$options['text'] = 'Drag & Drop Files Here';
$options['or_separator'] = 'or';
$options['browse'] = 'Browse Files'
}
return $options;
}
Change YOUR_PAGE_ID of the page you want to display different language/text.
If it’s not clear or you need assistance just let me know.
Glen