devaleph
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact form 7 TO API + Basic Auth] special mail tags@cladiv found a workaround for post related variables.
You could check and see if have access to special mail-tags fields somehow.
I changed plugin cr7-to-api for this one
https://es.wordpress.org/plugins/cf7-redirections-integrations-and-database/
Notice you can point to any URL (not just integromat webhooks)And then installed
https://wordpress.org/plugins/contact-form-7-dynamic-text-extension/The set up of the 2 fields I needed was done this way
[dynamichidden page-url webhook:postUrl “CF7_URL”]
[dynamichidden post-id webhook:postId “CF7_get_post_var key=’ID'”]Below some references that might help
- https://github.com/tomasbanik/cf7-redirections-integrations-database
- https://sevenspark.com/docs/contact-form-7-dynamic-text-extension
Hope it helps
Forum: Plugins
In reply to: [Contact form 7 TO API + Basic Auth] special mail tagsHello cladiv and cr7-to-api dev team,
Have you found a workaround for this?I am facing the same issue with post related fields (_post_id and _post_url) https://contactform7.com/special-mail-tags/#post-related
I need to include the _post_id and _post_url as part of the json POST.This is my json. Everyhing works except those _post* fields.
{
“name”: “[your-name]”,
“email”: “[your-email]”,
“mensaje”: “[your-message]”,
“ref”: “[_post_id]”,
“url”: “[_post_url]”,
“tel”: “[tel-179]”,
“mudanza”: “[menu-823]”
}