• Resolved ehaantech

    (@ehaantech)


    System have added single category instead of multiple categories. Have issue when we sync category field with air table field that have coma separated categories

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author WP connect

    (@wpconnectco)

    Hi @ehaantech , thanks for your message. Airtable does not support comma for separated elements.
    When it comes to category, you have to choose the right field type in Airtable like Single Select (Multiple select in your case) and different from “Single line text”. See screenshot below.

    • This reply was modified 1 year, 7 months ago by WP connect.

    Hi @wpconnectco

    If you can just add line of code in your plugin then it can resolve the issue

    if( strpos($value, ',') !== false ) {
        $value	= explode(',',$value);
    }


    OR you must provide the hooks to filter that data etc

    $value = apply_filters('air_wp_sync_filter_array_data',$value);
    Plugin Author WP connect

    (@wpconnectco)

    Hi @amentotechpvtltd , we can’t just assume that the comma is a tag separator in general. If that’s the case in their use case, we do have a filter that allows modifying the data and splitting terms separated by commas: airwpsync/import_record_fields. But it’s possible to also do it directly in Airtable, which is probably more user-friendly.

    Hi @wpconnectco

    Thank you for the reply. We really appreciate that

    We also create a support ticket related to your Pro version. Can you please have a look on that too?

    Thank you

    Plugin Author WP connect

    (@wpconnectco)

    No problem, thanks for your feedback. We try to do our best to answer within 48 hours (paid or free). Oh OK, which one (ID) is it ? I don’t see any ticket with “amentotech.com” email.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[NSFW] Issue with multiple categories (coma seprated)’ is closed to new replies.