Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Sheik Naveed 22 posts 90 karma points
    May 23, 2022 @ 05:31
    Sheik Naveed
    0

    Used media picker to upload image and display it on the page but it display as a url in page.

  • Paul Seal 524 posts 2889 karma points MVP 6x c-trib
    May 23, 2022 @ 07:56
    Paul Seal
    0

    Hi

    The value of the property should be the image url, but you need to add the html for the image yourself like this

    I’m on my phone and it won’t let me add html. Maybe someone can add if for me

    Something like that

    Paul

  • Sheik Naveed 22 posts 90 karma points
    May 23, 2022 @ 07:59
    Sheik Naveed
    0

    Please share an example so that I can check on it.

  • Paul Seal 524 posts 2889 karma points MVP 6x c-trib
    May 23, 2022 @ 08:00
    Paul Seal
    0

    I’m on my phone it won’t let me write html

  • Ambert van Unen 175 posts 817 karma points c-trib
    May 23, 2022 @ 08:11
    Ambert van Unen
    0

    Probably something like:

    <img src="@imageUrl"/>
    

    Use the value you have (the url to the image) as the source attribute for an HTML IMG element.

  • Sheik Naveed 22 posts 90 karma points
    May 23, 2022 @ 08:18
    Sheik Naveed
    0

    Already did this but image is not showing. Below is the code

        <div class="row">
          <div class="col-xl-6 col-lg-7" data-aos="fade-right">
            <img src="@Model.Value("imageOV")" class="img-fluid" alt="">
          </div>
          <div class="col-xl-6 col-lg-5 pt-5 pt-lg-0">
    
  • Ambert van Unen 175 posts 817 karma points c-trib
    May 23, 2022 @ 08:21
    Ambert van Unen
    0

    So if you use that code you say it appears as an URL in the frontend? Or does it show the type? Else you might need

    @Model.Value("ImageOV").Url 
    

    (also dont forget the self-closing / at the end of the IMG tag)

  • Sheik Naveed 22 posts 90 karma points
    May 23, 2022 @ 08:23
    Sheik Naveed
    0

    it doesn't show anything

    enter image description here

  • Bjarne Fyrstenborg 1280 posts 3990 karma points MVP 7x c-trib
    May 23, 2022 @ 08:49
    Bjarne Fyrstenborg
    0

    Hi Sheik

    This Media Picker 3 returns IEnumerable<MediaWithCrops> or MediaWithCrops depending in the configuration (single or multiple): https://our.umbraco.com/Documentation/Fundamentals/Backoffice/property-editors/built-in-property-editors/Media-Picker-3/

    MediaWithCrops has a reference to IPublishedContent.

    You should be able to get the media/image like this:

    var image = Model.Value<MediaWithCrops>("image");
    if (image != null)
    {
        <img src="@image.MediaUrl()" alt="" />
    }
    

    If it's a multi picker you need to cast to IEnumerable<MediaWithCrops> for example:

    var images = Model.Value<IEnumerable<MediaWithCrops>>("images")
    if (images != null && images.Any())
    {
        foreach (var image in images)
        {
            <img src="@image.MediaUrl()" alt="" />
        } 
    }
    

    Instead of MediaUrl() you can also use GetCropUrl() to return better compressed and optimized images.

  • Paul Seal 524 posts 2889 karma points MVP 6x c-trib
    May 23, 2022 @ 08:49
    Paul Seal
    0

    Ignore me on my phone

  • Sheik Naveed 22 posts 90 karma points
    May 23, 2022 @ 09:28
    Sheik Naveed
    0

    I am received error now as per below enter image description here

    enter image description here

  • Bjarne Fyrstenborg 1280 posts 3990 karma points MVP 7x c-trib
    May 23, 2022 @ 21:23
    Bjarne Fyrstenborg
    0

    The variable Image should be image instead.

    Furthermore you may need to include the namespace including MediaWithCrops.

    At the top of the template/view including the following:

    @using Umbraco.Cms.Core.Models;
    
  • Sheik Naveed 22 posts 90 karma points
    May 25, 2022 @ 04:53
    Sheik Naveed
    0

    Thanks this has been resolved

  • Bjarne Fyrstenborg 1280 posts 3990 karma points MVP 7x c-trib
    May 25, 2022 @ 07:32
    Bjarne Fyrstenborg
    0

    Great :)

    Make sure to mark the thread as solved, which may help others in future.

Please Sign in or register to post replies

Write your reply to:

Draft