• Hello! Thanks for this great plugin.
    Can you please tell me, is it possible to remove tag names from mail?
    I use contact form 7 with special mail tag [_post_title], whitch shows the title of the post. But when I get email, with post title goes language tags, for example:
    [en]Some title[:][ru]Какой-то заголовок[:]
    So, is it possible to remove language tags?

Viewing 1 replies (of 1 total)
  • Try use this:

    add_filter( 'wpcf7_special_mail_tags', function( $output, $name ) {
    		if ( '_post_name' == $name ) {
    			return wpm_translate_string( $output);
    		}
    
    		return $output;
    	}, 11, 2 );
    • This reply was modified 5 years, 4 months ago by VaLeXaR.
Viewing 1 replies (of 1 total)
  • The topic ‘Remove language tags from Email’ is closed to new replies.