How can I enter and/or change data in
Advanced Custom Fields: Table FieldACF table type
custom field:isle in my case contains 2 columns and 1-3 rows (but this can be any number of col and rows). Example custom field object output is 2 col and 2 rows.
I need access to value->body property content there each row is represented as an array.
I´ve tryed something like this
_komplekti_kuulub.subprop!value.subprop!body_*
and different serialization parameters, but this doesn't work.
In my previous post array have been obtained with ACF function:
$fields = get_field_object('komplekti_kuulub');
I started thinking that your software is not using ACF function to read out the information of the custom field. Therefore I get the same information with Wordpress function:
array(1) {
[0]=>
string(210) "{"acftf":{"v":"1.2.6"},"p":{"o":{"uh":0}},"c":[{"p":""},{"p":""}],"h":[{"c":""},{"c":""}],"b":[[{"c":"F7 225 mm*454 mm*36 mm paneelfilter"},{"c":"1 tk"}],[{"c":"G3 250 mm*460 mm filterkangas\n"},{"c":"2 tk"}]]}"
}
Trying get data from field "komplekti_kuulub" with parameters
komplekti_kuulub!acftf
and serialization Json object or Json array the best I can achive is to get [object Object] as field value. Then I've added additional parameters then nothing is displayed.
How is your plugin reading complex custom fields created with very common custom fields plugin like ACF? Howto to obtain right keys to read/edit custom field values? Using different functions will give different result arrays/object then reading data.