Close

Upgrading from 3.8 to latest

jaseefar
one year ago
#21942 Quote
Avatar
  • 2
if i downlead the latest urban theme , can i get the theme for  nop version 3.8 also??

we are migrating from 3.8 to the latest.

if we are purchasing the latest urban what are the steps to integrate it with our latest nopcommerce.

we have customization on 3.8 urban theme can i replace the old cstml file in latest theme views.
todor.atanasov
one year ago
#21945 Quote
Avatar
  • Moderator
  • 249
jaseefar wrote:
if i downlead the latest urban theme , can i get the theme for  nop version 3.8 also??

we are migrating from 3.8 to the latest.

if we are purchasing the latest urban what are the steps to integrate it with our latest nopcommerce.

we have customization on 3.8 urban theme can i replace the old cstml file in latest theme views.


Greetings,

Thank you for reaching out to us!

Yes, we support 3.8 version for the Urban theme and you may download it on the My Dowloads page.

Bear in mind that if you upgrade to 4.5, your customizations would be deleted and you have to manually merge your customized templates.  
Best regards,
Todor Atanasov
Nop-templates.com
jaseefar
one year ago
#21969 Quote
Avatar
  • 2

i downloaded yur code for matjery.ae

the homepage category is not working properly. where is slide wrapper styles in this html. when i was checking yur demo it is there

i just added yur theme to 4.3 v of nop but not getting as like yur demo



@model Tuple<CategoryModel, int>

@inject IViewComponentSelector viewComponentSelector

@{
    var titleType = Model.Item1.Name.Length > 6 ? "big-title" : "small-title";
    var evenOrOdd = Model.Item1.Name.Length % 2 == 0 ? "even" : "odd";
}

<div class="item-box [email protected]">
    <div class="category-item">
        <h2 class="title @titleType @evenOrOdd">
            <a href="@Url.RouteUrl("Category", new { SeName = Model.Item1.SeName })" title="@Model.Item1.PictureModel.Title">
                <strong>@Model.Item1.Name</strong>
                <span>@T("SevenSpikes.Themes.Urban.Catalog.ShopNow")</span>
            </a>
        </h2>
        <div class="picture">
            <a href="@Url.RouteUrl("Category", new { SeName = Model.Item1.SeName })" title="@Model.Item1.PictureModel.Title">
                @if (viewComponentSelector.SelectComponent("LazyLoadImage") != null)
                {
                    @await Component.InvokeAsync("LazyLoadImage", new(string Key, string Value)[]
                    {
                        ("src", Model.Item1.PictureModel.ImageUrl),
                        ("alt", Model.Item1.PictureModel.AlternateText),
                        ("title", Model.Item1.PictureModel.Title)
                    })

                }
                else
                {
                    <img alt="@Model.Item1.PictureModel.AlternateText" src="@Model.Item1.PictureModel.ImageUrl" title="@Model.Item1.PictureModel.Title" />
                }
            </a>
        </div>
    </div>
</div>
todor.atanasov
one year ago
#21977 Quote
Avatar
  • Moderator
  • 249
jaseefar wrote:

i downloaded yur code for matjery.ae

the homepage category is not working properly. where is slide wrapper styles in this html. when i was checking yur demo it is there

i just added yur theme to 4.3 v of nop but not getting as like yur demo


Greetings,

Thank you for reaching out to us!

Please raise a ticket in our support system and provide us with some more details on how you set up this page.
Best regards,
Todor Atanasov
Nop-templates.com