I manage to solve this. I apply this line that will remove both weight and size attribute
add_action( 'wpo_wcpdf_custom_styles', function( $document_type, $document ) {
?>
.product .item-meta,
.product .weight {
display: none;
}
<?php
}, 10, 2 );
thanks for your reply