Can I replace my shopify pproduct image with the uploaded image from the widget?

can I replace my shopify pproduct image with the uploaded image from the widget?

Yes, it’s possible. To update the product image after upload you need to change the src of the image with id=“ProductPhotoImg” to the CDN URL of the uploaded file, for example, you can add this code to the uploadcare-fields.liquid file:

<script>
  var widget = uploadcare.Widget('[role=uploadcare-uploader]')
  widget.onUploadComplete(function(file) {
  	$('#ProductPhotoImg').attr('src', file.cdnUrl);
  });
</script> 

Another way is to change the src of the image to the line item property that is linked to the widget’s value.