Support

Account

Home Forums General Issues Importing CSV with multiple checkboxs Reply To: Importing CSV with multiple checkboxs

  • Hi @aaronrobb

    Does your import plugin allow you to hook into the value before it is saved to WP?

    If so, you can hook in and explode the value like so:

    
    $value = explode(',', $value);
    
    return $value
    

    Then your value will be saved as an array!