How do i place a video above the description on my product page?

https://charmente.com/products/v-back-flared-jumpsuit

You may can embeds video into description of your product if it does not option to add video section in your Product information section in Online store > Themes > Customize > Products > Default product

Hello @Simon159 ,

  1. Create Metafield for Video Source:

    Access your e-commerce platform or CMS admin panel.
    Look for a section related to product settings or customizations.
    Create a new metafield that will store the dynamic video source. Name it appropriately, such as “Video Source” or similar.

    1. Assign Metafield to Product:

    Go to the product for which you want to add the video.
    Look for the product’s details or settings, and find the newly created metafield.
    Input the dynamic video source in the metafield. This could be a URL or any other format depending on your requirements.

    1. Use a liquid block

    Go to product page in theme customizer.
    Use block custom liquid just before the description.
    last place and modify this code inside the liquid block

<iframe src="{{ product.metafields.custom_namespace.video_source }}" width="560" height="315" frameborder="0" allowfullscreen=""></iframe>

Thanks