Hi @webcipokislaszlo
You can use a PHP function on the Post ID element to do this: http://www.wpallimport.com/tour/export-developer-friendly/. Here’s a basic example function:
function my_combine_data( $post_id ) {
$title = get_the_title( $post_id );
$sku = get_post_meta( $post_id, "_sku", true );
$size = get_post_meta( $post_id, "attribute_pa_size", true );
$data = $title . " - " . $sku;
if ( !empty( $size ) ) {
$data .= " - " . $size;
}
return $data;
}
Screenshot: https://d.pr/rV17UI.
Thank you
Its working nice, but with pa_size attribute i get unformatted size (ig. i get size “425” while my real size is “42.5”)
Is it possible to get the real formatted size?
Thanks a lot!
Regards
Sorry
Now i found the solution!!!
Thanks
Regards