BUG: Blog tags option is missing in 3.80 (official release)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
7 years ago
It seems like the option to add blog tags is missing in the 3.80 production.

I just looked into "Nop.Web/Administration/Views/Blog/_CreateOrUpdate.cshtml" and there is no option for blog tags in the view.

I just confirmed by looking here: https://github.com/nopSolutions/nopCommerce/blob/develop/src/Presentation/Nop.Web/Administration/Views/Blog/_CreateOrUpdate.cshtml


Current code:

  
  <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.BodyOverview)
                    </div>
                    <div class="col-md-9">
                        @Html.NopTextAreaFor(model => model.BodyOverview)
                        @Html.ValidationMessageFor(model => model.BodyOverview)
                    </div>
                </div>
                <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.AllowComments)
                    </div>
                    <div class="col-md-9">
                        @Html.NopEditorFor(model => model.AllowComments)
                        @Html.ValidationMessageFor(model => model.AllowComments)
                    </div>
                </div>




Solution (adding tags):

   <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.Tags):
                    </div>
                    <div class="col-md-9">
                       @Html.NopEditorFor(model => model.Tags)
                    @Html.ValidationMessageFor(model => model.Tags)
                    </div>
                </div>




With solution, the view should be like this:


<div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.BodyOverview)
                    </div>
                    <div class="col-md-9">
                        @Html.NopTextAreaFor(model => model.BodyOverview)
                        @Html.ValidationMessageFor(model => model.BodyOverview)
                    </div>
                </div>
                <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.Tags):
                    </div>
                    <div class="col-md-9">
                       @Html.NopEditorFor(model => model.Tags)
                    @Html.ValidationMessageFor(model => model.Tags)
                    </div>
                </div>
                <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.AllowComments)
                    </div>
                    <div class="col-md-9">
                        @Html.NopEditorFor(model => model.AllowComments)
                        @Html.ValidationMessageFor(model => model.AllowComments)
                    </div>
                </div>
7 years ago
Removing ":" (updated solution):

   <div class="form-group">
                    <div class="col-md-3">
                        @Html.NopLabelFor(model => model.Tags)
                    </div>
                    <div class="col-md-9">
                       @Html.NopEditorFor(model => model.Tags)
                    @Html.ValidationMessageFor(model => model.Tags)
                    </div>
                </div>
7 years ago
Thanks a lot, Lavish! Fixed
7 years ago
a.m. wrote:
Thanks a lot, Lavish! Fixed


Great - Thanks Andrei!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.