Adding a custom image outside the product image gallery to Product Main

I need to add a custom image to ‘Product Main’ section that is outside of the product image gallery but I am unable to find a block that is just an image. I have figured out how to add custom text using meta fields but not an image.

What I want to do is add am image in place of ‘Free Accessories Worth Rs. 299’ in place of that text. I wish to also link it to the offer we’re running but getting an eye-catching image in there is priority.

Ok I’ve managed to solve this and it was far simpler than I expected it to be. Here are the steps:

  1. Go to Settings → Custom Data → Products → Add Definition to Create a custom metafield with a description. Give it a name that you can use in a line of code.
  2. Under ‘Select type’ choose file and choose only image (unless you want to show video too)
  3. Once you save this, the custom metafield will show up under products
  4. In your theme customisation choose </> Custom Liquid and add a line of code
    {{ product.metafields.custom.freebies | metafield_tag }} Where feebies is your custom metafield
  5. Position this block anywhere you like and you’re done.

An image will be displayed exactly as and where you want it.