Copied to clipboard

Flag this post as spam?

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


  • Ajju 25 posts 148 karma points
    Jan 19, 2018 @ 20:25
    Ajju
    0

    Displaying Group Of Images

    HI Umbracians,

    I am pretty new to Umbraco and come from Open Source Technologies background. I have little understanding of the flow of Umbraco and I am getting interested to learn in deep.

    I need your help to display Group of images in homepage. Please let me know the steps in such a way, any number of images could be added from backoffice.

    I appreciate your answers on backoffice step & also the code to show the images in frontend.

    Thanks

  • Alex Skrypnyk 6132 posts 23951 karma points MVP 7x admin c-trib
    Jan 22, 2018 @ 10:03
    Alex Skrypnyk
    0

    Hi Ajju

    Welcome to our forum!!! Where are you storing images?

    /Alex

  • Alex Skrypnyk 6132 posts 23951 karma points MVP 7x admin c-trib
    Feb 13, 2018 @ 14:44
    Alex Skrypnyk
    0

    Hi Ajju,

    Did you find a solution? Share with our community, please

    /Alex

  • Ravi Motha 290 posts 500 karma points MVP 7x c-trib
    Feb 13, 2018 @ 17:59
    Ravi Motha
    0

    Hi Ajju

    Are you using something like media picker to select media items for display on your site?? if you are you should be good using something like the the following code

    https://our.umbraco.org/documentation/getting-started/backoffice/property-editors/built-in-property-editors/media-picker

  • Ajju 25 posts 148 karma points
    Feb 14, 2018 @ 08:52
    Ajju
    100
    var multiImages= Model.Content.GetPropertyValue<IEnumerable<IPublishedContent>>("groupImage");
    foreach (var item in multiImages)
       {
                  <img src="@item.Url" alt="">                                   
        }
    
Please Sign in or register to post replies

Write your reply to:

Draft