– Non-ANSII Character not supported
When you try to export you get ??? instead of the correct characters. Tested with greek letters
– Does not work on windows server
Hello, can you tell if this plugin imports attached files ?
Actually I tried it but never found any option to import attached files as well. Thanks.
I find a bug when updating draft item, here is my patch :
in wp-content/plugins/csv-import-export/includes/esb-cie-model.php line 165
/**
* Check post by post slug and return valid post id
*/
function esb_cie_check_post_by_slug( $post_slug, $post_type = 'any', $post_status = 'any' ) {
if( !empty( $post_slug ) ) {
$args = array(
'post_type' => $post_type,
'name' => sanitize_title($post_slug),
'posts_per_page'=> 1,
'fields' => 'ids',
'post_status' => $post_status
);
$post_ids = get_posts( $args );
return !empty( $post_ids ) && !empty( $post_ids['0'] ) ? $post_ids['0'] : 0;
} else {
return 0;
}
}
enjoy!
]]>Hi Developer,
Thanks a lot for a nice plugin. I am able to import categories for a custom post ‘MarketPress WordPress E-Commerce’ plugin. But the plug in has lot of attributes, your plugin is not showing all the attributes. Will you support all custom attributes too?
Thanks,
Ramesh
It looks odd.
I’ve some other types of posts in my site, those are exporting nicely.
But its not working in the default post (that we get from WP).
Category or posts nothing is exporting, sample is working though…
Hi!
Importing standard WordPress data is all find and good, but your plugin says we can import data to custom fields. I match the name of the custom field to the column the data is in, but I can’t get it to import to custom fields. Can we get an example of how to import data to a custom field?
Thanks!
]]>Please I see your CSV Impot- EXport plugin to be nice, but I am struggling to use it. Can you please show me step by step the how to import CSV fill to category? Awaiting your kindest reply. Thanks.
David
]]>Hi,
I checked teh latest version and found two major problems:
1) It does not export full categories and tags – only one line with one slug is created.
2) It still does not support non-ANSII – all posts written in non-English showed ???? instead of text.