Tell us what you are trying to do?
We are creating a sport services multivendor store using Types, Views, CRED, Yith Multivendor and Yith Event Tickets (for the moment) we are planning to add also Yith Subscriptions and Bookings.
hidden link
For know, Yith Event Tickets, create some extra fields as product meta (as Yith support told me). They create them this way:
Date
start_date = yit_get_prop( $product, '_start_date_picker', true );
$start_time = yit_get_prop( $product, '_start_time_picker', true );
$end_date = yit_get_prop( $product, '_end_date_picker', true );
$end_time = yit_get_prop( $product, '_end_time_picker', true );
Custom fields form (for each attendee to fill out, like T-shirt Size)
$fields = yit_get_prop( $product, '_fields', true );
Add-on services (like ordering an insurance for the event or transportation)
$services = yit_save_prop( $product, '_services', $services );
Atendees tab
Don't know how is created, but I could ask Yith. Sure it similar to the others.
Here is how this fields are created at wp-admin: hidden link
And here is how they are showed now for the users: hidden link
I tried following this: https://toolset.com/documentation/user-guides/using-third-party-hidden-fields/ but I think is not the same case and it's not even working with Date Type.
For example, for the services field as it really vary depending on what the vendor set up, can't really tell what kind of field it would be. Same for the custom fields form.
I want to be able to manage these fields because for the mobile version, this set up is not optimal. In mobile, we'll have a fixed footer just showing the price and a big button. I would like to link this button to a pop-up or a pre-checkout page so the user can fill out custom fields and add-on services required for the purchase.
What is the link to your site?
hidden link