- Thanks for ArcheCSV
- It's a fantastic addition to Plone and Archetypes.
I installed ArcheCSV 1.0 into Plone 2.5 (on Windows) but when I went to import the data, I was only given the option to paste my CSV data into a large text box. The field and "browse" button for uploading a file didn't appear on the form.
It turns out that ArcheCSV doesn't work out-of-the-box with Plone 2.5 because Kupu has hidden the File Upload field by default. The div class fieldUploadFile is in the HTML, but is hidden in CSS.
There's an easy fix. In the ZMI, go to portal_skins/custom and create a page template named "archecsv.css" with this:
.fieldUploadFile {
text-align: right;
margin-right: 0.75em;
display: block;
}
Next, in the ZMI, go to portal_css and register the new css file.
I hope this helps, and perhaps a fix can be incorporated into the next version. It'd be nice if the the file upload field were hidding in Kupu, but visible in ArcheCSV.