Tell us what you are trying to do?
I want to pass an already created toolset user field to a WooFunnels form so that when a user registers, the values are stored within the user profile. I'm not sure what the WooFunnel form is looking for? Is it the field slug, or is there something different stored in the database. The documentation mentions a leading underscore? _billing_address (for example).
I need to input the correct value into the WooFunnel field. What I have currently does not work, nothing gets stored properly in the user profile. (see attached images). My toolset user fields have been created, I just need to hook them into the checkout form.
Thanks for any help you can provide.
Hello,
For example, you have created a custom user field "telehealth_consent" with Toolset Types plugin, Types plugin will add prefix "wpcf-" before the field slug, so you can use below field slug in other plugins:
wpcf-telehealth_consent
More help:
https://toolset.com/documentation/customizing-sites-using-php/functions/
However, when you are accessing custom fields through native WordPress functions, you need to prepend the wpcf- prefix to the slug. Continuing from the above example, for native WordPress function to access the “House Price” field, you need to use the wpcf-house-price slug.