WPCF7 incorporates more filters than used in the answer you already found.
Analogously to that, the wpcf7_posted_data
filter should do what you are looking for:
function wpse73667_wpcf7_posted_data( $posted_data )
{
$posted_data = do_shortcode( $posted_data );
return $posted_data;
}
add_filter( 'wpcf7_posted_data', 'wpse73667_wpcf7_posted_data' );
Note that this is an educated guess and untested.
You can find all the filters available by searching the %plugins_directory%/contact-form-7/includes/classes.php
file for the term apply_filters
.
Related Posts:
- Send Mail with link to current_user
- Custom form, shortcode, and submit handler
- Sending form data via PHPMailer – How to action PHP script from a form
- Simple contact form with field validation
- Raw output (preventing wpautop)
- Obfuscating Email Addresses in Form Fields
- How to add and submit input fields using a shortcode?
- Form Shortcode not saving data to WP database
- Getting error on submitting form using Ajax with shortcode
- Adding custom form within add_shortcode
- WordPress Emails & Contact Forms [closed]
- Modifying the wordpress login page and then referencing it with a shortcode problem
- Form processing: How to process form before output and access data from shortcode
- Email from my theme’s contact form doesn’t get the reply-to address right
- Create shortcode for each form field in contact form 7
- Contact form – problem with displaying message about sent mail
- Email form getting hacked
- How can I use a plugin shortcode inside of a html form?
- How to send custom mail when a user complete a specific form
- Working with Contact Form 7 pipes
- Contact form code not working. Need help!
- How to display a page dependent on a url parameter supplied by a form/button page?
- Add custom shortcodes to the Welcome Mail
- WordPress shortcode select option not working [closed]
- Using get_option() in JavaScript
- Shortcode empty attribute
- Making a Shortcode [NEXT] and [PREVIOUS] to place into specific posts for post navigation
- How to display the site name in a WordPress page, or post
- How can I put a wp_redirect into a shortcode?
- Using audio shortcode for .mp3 URLs with a query string
- Get multiple shortcode attribute values
- Why do_shortcode is not executing the shortcode in data-* html attributes?
- Some doubts about gallery shortcode in WordPress
- has_shortcode for content added after the content
- Creating a Slider Shortcode Based on Nivo Slider
- How can I make a shortcode from this code?
- Adding PHP/HTML code inside page from custom template
- How to enable shortcodes in text retrieved from get_theme_mod
- Register visits of my pages in wordpresss
- List monthy archives for specific year with wp_get_archives
- How can I included CSS to a page or a shortcode? [closed]
- Call Shortcode inside another Shortcodes callback
- Creating a shortcode in a plugin that includes JS
- Shortcode to delete post from front end
- MathJax inside shortcode
- How to parse shortcodes within returned content
- Hook WP_Embed run_shortcode
- Shortcodes attributes defaults
- Get Required Assets (JS, CSS etc) for post using REST API
- shortcode in snippet plugin not work
- AJAX and Shortcode with Parameters
- How to protect parts of my code from TinyMCE modification when switching from text to visual mode?
- Responsive Embeds using default embed shortcode
- Shortcode output appearing at the top of the page only [duplicate]
- problem with shortcodes nesting
- OOP and WordPress shortcode
- PHP/WordPress — How do I check if Shortcode returns content?
- Convert my php code into shortcode
- Add shortcode with open close function
- Shortcode is not working
- Why can’t I display attachment_image_src with Custom Size?
- Get attributes of nested shortcodes
- Enclosing Shortcode is acting like self-closing
- Shortcode into the same shortcode
- Execute shortcodes in PHP
- A shortcode nested inside a shortcode
- Custom Shortcode + Querying and Ordering Posts using multiple Advanced Custom checkboxes
- call other shortcode in the email contactform7 send [closed]
- Putting a space between the buttons [closed]
- Contact Form 7 Plugin emails not being received by some accounts
- Dynamic number within shortcode
- How can i strip shortcode from HTML title tag?
- Returning HTML to Shortcode Block
- WP REST API remove the WordPress shortcodes from the JSON wp/v2/posts content->rendered
- How to display html element and php string in the same line?
- Hide download option video shortcode
- WordPress Shorcode Display hierarchical taxonomy [child, parent]
- Shortcode not working in Jetpack Top Posts & Pages widget
- Restricting shortcode for users
- Gutenberg running code only available in front end within shortcode
- Insert HTML in content property and render it using shortcodes
- Redirect per shortcode if user is logged in
- Shortcode, vs blocks, vs templates – what would you do for choosing or creating custom post data in editor?
- Do_shortcode before send email content
- Convert WordPress shortcodes into plain html
- Attributes are not passed on nested shortcode
- How to make a shortcode with a line break in it parse correctly?
- Plugin Shortcode value in post
- Woocommerce Filter Main Loop by Tag [closed]
- Shortcodes: override a shortcode / change shortcode on the fly
- Access the resized images generated by `add_image_size()`
- Separating Custom Template logic
- woocommerce Product shortcode create [closed]
- A number appears inside a div called wpb_wrapper, when I use a custom shortcode
- Enclose article’s body with default shortcode
- Why is my ajax live search not working when i use a shortcode to call it?
- Shortcode with foreach
- My first WordPress shortcode just returning []
- How to exclude some cats from wp_list_categories using shortcut
- How can I create a shortcode that shows a list of categories on the single product page?