How can I add image custom field for News post type ?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
Same the title, for now I want to add new image field for News post, I need to display featured image for News. How can I do it ?
Look forward some experts can help me solved it. thanks !
7 years ago
please help me .....................
7 years ago
huykon225 wrote:
Same the title, for now I want to add new image field for News post, I need to display featured image for News. How can I do it ?
Look forward some experts can help me solved it. thanks !


Nop has a Editor template to uploading image ==> It works like bellow ==>

In model==>



        [UIHint("Picture")]
        [NopResourceDisplayName("Admin.Catalog.Categories.Fields.Picture")]
        public int PictureId { get; set; }


In views ==>


    <tr>
            <td class="adminTitle">
                @Html.NopLabelFor(model => model.PictureId)
            </td>
            <td class="adminData">
                @Html.EditorFor(model => model.PictureId)
                @Html.ValidationMessageFor(model => model.PictureId)
            </td>
        </tr>


Note: You may go through how category image working
7 years ago
thanks your reply ! News don't have category, just post you can see. I could add image field for new and added to database but now I have issue with display image field in website (User interface) . Can you fix it ?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.