Hi @nadek67
In order to append data to the content that already exists for your posts, you’d need to use Manual Record Matching (see documentation) and custom code with our API (see documentation). Here’s the hook you’ll likely want to use: https://github.com/soflyy/wp-all-import-action-reference/blob/master/all-import/pmxi_article_data.php.
Here’s an example snippet:
function my_pmxi_article_data( $articleData, $import, $post_to_update ) {
$articleData['post_content'] = $post_to_update->post_content . $articleData['post_content'];
return $articleData;
}
add_filter( 'pmxi_article_data', 'my_pmxi_article_data', 10, 3 );
Keep in mind that this is only an example. You’ll have to adjust it to work with your data.
What page would you drop that code into?