Tell us what you are trying to do?
I want create edit form for WooCommerce product, where custom fields from FooEvents will be used.
When I load non-types and add it to form it just display content of FooEvents fields.
When I use generic field with name of FooEvents field it shows content bit didn't save edited content.
I also try to create Toolset field for product with unique name, but it did not worked.
Have you any help how to add these field to Product Post Form ?
Or how to format it in Expert Form mode ?
Also I cannot find Product Gallery fields in Toolset Form fields.
How to edit Product Gallery using cred form ?
Thanks
Is there any documentation that you are following?
No. Just trying to find similar things here.
Is there a similar example that we can see?
hidden link
This is link to product which is Event. There is small Edit Cred Form in red area where WooCommerceEventsLocation field is in Generic field, but saving Location does not work.
What is the link to your site?
hidden link
Hello,
I assume we are talking about shortcode [cred_generic_field], it does not save the value into database by default, please try to add parameter "persist" into it, and test again, for example:
[cred_generic_field ...]
{
...
"persist":1
}
[/cred_generic_field]
Toolset Forms plugin does not support Woocommerce Product Gallery field, there isn't such kind of built-in feature, you might consider custom codes, for example below thread:
https://toolset.com/forums/topic/multi-image-form-post/page/2/#post-1151131
Which is using a repeating image field to upload the images, after user submit the form, use custom codes to save values into Woocommerce Product Gallery field
My issue is resolved now. Thank you!