what i try to do,
i add the image upload field to the vendor form (check image 1),its working fine now i want to show that uploaded image in my single product page. i used some code to do that but its not working perfectly(Check the code).My code is not good because its not change the image by vendor, so i need a new code for that change the image by the vendor.(check image 2)if u check the image u see that image come to every product page its not changing with different vendors. i try google but didn't find any reference that why I'm asking u guys. please help me.
My cimy user extra field details check image 3
If some one can help me I'm really glad
the code i used to show image,
function show_shop_qr(){
global $product;
echo'<label for="item_code" class="form-label">Shop QR Code :</label>';
echo"<br>";
$Image1_URL='http://www.instashop.lk/wp-content/uploads/2020/10/download.jpg';
echo '<img src="'.$Image1_URL.'" width="100" height="100" />';
echo"<br>";}