You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 5, 2018. It is now read-only.
I'm exporting values for multiple fields, some plain text (which works fine), and some table fields. In the CSV, for any table fields, the values of each row are added to the CSV cell twice.
For example, if I have a table field such as this:
Length
Width
Height
1
2
3
...it would export to the CSV like this:
1, 2, 3, 1, 2, 3
Am I missing a step, or can you give me any instruction on how to fix this? Thanks!
The text was updated successfully, but these errors were encountered:
I ran into a similar issue. I believe it's because you've likely added custom handles to your table columns.
Under the hood, Craft will still maintain col1, col2, col3, etc handles. When the plugin exports a table, it iterates over each column handle, including the col ones. If you remove your custom column handles from your table field then it should stop the duplication.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm exporting values for multiple fields, some plain text (which works fine), and some table fields. In the CSV, for any table fields, the values of each row are added to the CSV cell twice.
For example, if I have a table field such as this:
...it would export to the CSV like this:
1, 2, 3, 1, 2, 3
Am I missing a step, or can you give me any instruction on how to fix this? Thanks!
The text was updated successfully, but these errors were encountered: