Include favorite list in Contact Form 7
-
I am trying to use your custom template shortcode to include the list in the email generate by CF7.
I know in the past I had to use this filter to support external shortcode in CF7, but yours is not rendering.
function my_special_mail_tag( $output, $name, $html ) { if ( 'ccc_my_favorite_list_custom_template' == $name ) $output = do_shortcode( "[$name]" ); $output .= 'test'; // confirmed this has fired. return $output; } add_filter( 'wpcf7_special_mail_tags', 'my_special_mail_tag', 10, 3 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Include favorite list in Contact Form 7’ is closed to new replies.