Eric Holst
Forum Replies Created
-
AuthorPosts
-
and the field:
claimed – values 0 or 1
i set the value to 1 when i imported new listinging, however, when i downloaded the listing after importing, the claimed field was set to 0
after installing the plugin, it appears to have worked on my single record test file. rather unusual that my MemberPress plugin imported CSV files without any issues and didn’t require this plugin in order to work?
the plugin is saying that its not necessary for versions after 4.7.3 ????????
is this what your telling me is the solution?
is this the fix?
[php]
function wp39550_disable_real_mime_check( $data, $file, $filename, $mimes ) {
$wp_filetype = wp_check_filetype( $filename, $mimes );$ext = $wp_filetype[‘ext’];
$type = $wp_filetype[‘type’];
$proper_filename = $data[‘proper_filename’];return compact( ‘ext’, ‘type’, ‘proper_filename’ );
}
add_filter( ‘wp_check_filetype_and_ext’, ‘wp39550_disable_real_mime_check’, 10, 4 );
[/php]This reply has been marked as private.This reply has been marked as private.i selected to update the record if the ID existed. so it should have updated the existing record when i tried to import.
but i selected to update existing record.
This reply has been marked as private.is that the case will ALL importing?
the order of fields is tied to the import process and files will fail if the fields are in the wrong order? seems like a VERY weak import implementation. ill try changing the order as per your instructions. thanks
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private. -
AuthorPosts